GitHub actions updater #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub actions updater | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' # every Sunday | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
token: ${{ secrets.WORKFLOW_SECRET }} # Access token with `workflow` scope | |
- name: Run GitHub Actions Version Updater | |
uses: saadmk11/[email protected] | |
with: | |
# [Required] Access token with `workflow` scope. | |
token: ${{ secrets.WORKFLOW_SECRET }} # Access token with `workflow` scope | |
committer_username: 'Jonathan Gruber' | |
committer_email: '[email protected]' | |
commit_message: 'Update GitHub actions' |