Update documented actions #5
This file contains hidden or 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: Update documented actions | |
| on: | |
| schedule: | |
| - cron: "0 9 * * 1" | |
| timezone: America/Los_Angeles | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| pinact: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: suzuki-shunsuke/pinact-action@896d595f299e71d65b9d28349d6956abe144390a # v3.0.0 | |
| with: | |
| config: .pinact.yaml | |
| github_token: ${{ github.token }} | |
| skip_push: "true" | |
| update: "true" | |
| - name: Create pull request | |
| uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 | |
| with: | |
| token: ${{ github.token }} | |
| add-paths: docs/aws.md | |
| branch: automation/pinact-docs | |
| delete-branch: true | |
| commit-message: "docs: update pinned actions" | |
| title: "docs: update pinned actions" | |
| body: Automated action updates generated by pinact. |