Continuous update #508
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: Continuous update | |
on: | |
schedule: | |
- cron: 0 0 * * * | |
jobs: | |
continuous-update: | |
name: Continuous update | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout code | |
uses: silver886/github-actions/checkout@master | |
- name: Update Dockerfile | |
run: ./update.sh | |
- name: Create Token | |
id: token | |
uses: silver886/github-actions/create/token@master | |
with: | |
app_id: ${{ secrets.GH_APP_ID }} | |
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }} | |
- name: Create Pull Request | |
uses: silver886/github-actions/create/pull-request@master | |
with: | |
token: ${{ steps.token.outputs.token }} |