Skip to content

Commit

Permalink
feat: Create weekly tickets for on-call.
Browse files Browse the repository at this point in the history
I tried to do things bi-weekly but that's actually not easily possible
with the versino of cron that Github uses.  So we'll settle for doing
this every week which is not a bad situation.
  • Loading branch information
feanil committed Oct 27, 2023
1 parent 7e2ac6f commit 18f8170
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/add-weekly-gh-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Create weekly issues
on:
schedule:
- cron: 0 0 * * 0
workflow_dispatch: {}

jobs:
create_issue:
name: Create weeksly issues
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- run: |
gh issue create --repo "openedx/axim-engineering" \
--title "Welcome new discourse members" \
--label "github-request" \
--body "Go through [new discourse introductions](https://discuss.openedx.org/c/community/introductions/18) and welcome new people to the community."
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 18f8170

Please sign in to comment.