Skip to content

Commit

Permalink
Add reminder workflow for refreshing organization secrets.
Browse files Browse the repository at this point in the history
Closes #32.
  • Loading branch information
alexrp committed Jan 27, 2024
1 parent edaff58 commit 30a1650
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/secrets.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Secrets
on:
schedule:
- cron: 0 0 1 1 *
workflow_dispatch:
permissions:
issues: write
defaults:
run:
shell: bash
jobs:
secrets:
runs-on: windows-2022
steps:
- name: Create GitHub issue
run: |
gh issue create -R ${{ github.repository }} -t "Refresh organization secrets $(date +%Y)" -l "area: marketplace" -l "area: nuget"

0 comments on commit 30a1650

Please sign in to comment.