Merge pull request #1637 from analysis-tools-dev/dependabot/cargo/dat… #7706
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: Render | |
on: | |
push: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Render list | |
run: make render | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Commit list | |
commit_user_name: Analysis Tools Bot | |
commit_user_email: [email protected] | |
commit_author: Analysis Tools Bot <[email protected]> | |
- name: Redeploy website | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
repository: analysis-tools-dev/website-next | |
event-type: rebuild |