Skip to content

Commit

Permalink
Merge pull request #951 from openedx/feanil/weekly_tasks
Browse files Browse the repository at this point in the history
feat: Create weekly tickets for on-call.
  • Loading branch information
Feanil Patel authored Oct 27, 2023
2 parents 7e2ac6f + 18f8170 commit ed4bd64
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 ed4bd64

Please sign in to comment.