-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #951 from openedx/feanil/weekly_tasks
feat: Create weekly tickets for on-call.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
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: 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 }} |