-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): add monthly roadmap reminder central action (#2330)
- Loading branch information
1 parent
413af48
commit 6c20e18
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
.github/workflows/on_schedule_monthly_roadmap_reminder.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Monthly roadmap reminder | ||
|
||
on: | ||
workflow_dispatch: {} | ||
schedule: | ||
- cron: '0 0 1 * *' # runs first day of the month | ||
|
||
permissions: | ||
contents: read | ||
|
||
|
||
jobs: | ||
monthly-roadmap-reminder: | ||
permissions: | ||
contents: read | ||
pull-requests: read | ||
issues: write # create monthly roadmap report | ||
uses: aws-powertools/actions/.github/workflows/monthly_roadmap_reminder.yml@dd7035996f1813dbc50fe78e523d4c2a074258a9 | ||
secrets: | ||
token: ${{ secrets.GITHUB_TOKEN }} |