Skip to content

Commit

Permalink
Add action to auto update gradle wrapper (#5511)
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-berg authored Jun 9, 2023
1 parent 2819f72 commit b23ef18
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/reusable-workflow-notification.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# this is useful because notifications for scheduled workflows are only sent to the user who
# initially created the given workflow
name: Reusable - Workflow notification

on:
workflow_call:
inputs:
success:
type: boolean
required: true

jobs:
workflow-notification:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Open issue or add comment if issue already open
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
number=$(gh issue list --search "Workflow failed: $GITHUB_WORKFLOW" --limit 1 --json number -q .[].number)
if [[ $number ]]; then
if [[ "${{ inputs.success }}" == "true" ]]; then
gh issue close $number
else
gh issue comment $number \
--body "See [$GITHUB_WORKFLOW #$GITHUB_RUN_NUMBER](https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID)."
fi
elif [[ "${{ inputs.success }}" == "false" ]]; then
gh issue create --title "Workflow failed: $GITHUB_WORKFLOW (#$GITHUB_RUN_NUMBER)" \
--body "See [$GITHUB_WORKFLOW #$GITHUB_RUN_NUMBER](https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID)."
fi
31 changes: 31 additions & 0 deletions .github/workflows/update-gradle-wrappers-daily.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Update gradle wrappers (daily)

on:
schedule:
# daily at 1:30 UTC
- cron: "30 1 * * *"
workflow_dispatch:

jobs:
update-gradle-wrapper:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- id: setup-java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17

- name: Update Gradle Wrapper
uses: gradle-update/update-gradle-wrapper-action@v1

workflow-notification:
needs:
- update-gradle-wrapper
if: always()
uses: ./.github/workflows/reusable-workflow-notification.yml
with:
success: ${{ needs.update-gradle-wrapper.result == 'success' }}

0 comments on commit b23ef18

Please sign in to comment.