sops-rotate-reminder #16
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: sops-rotate-reminder | |
| on: | |
| repository_dispatch: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 7 3 * *" | |
| jobs: | |
| createIssue: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: sops-rotate-reminder | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh issue create \ | |
| --title "SOPS rotation reminder" \ | |
| --body "Please rotate, I cannot do it since I have no secrets." \ | |
| --label "reminder,sops-rotate" \ | |
| --assignee ${{ github.repository_owner }} |