Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/call-contributor-pr-reply.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Send reply on a new contributor pull request
on:
pull_request_target:
types: [opened]
jobs:
call-workflow:
name: Call shared workflow
uses: learningequality/.github/.github/workflows/contributor-pr-reply.yml@main
secrets:
LE_BOT_APP_ID: ${{ secrets.LE_BOT_APP_ID }}
LE_BOT_PRIVATE_KEY: ${{ secrets.LE_BOT_PRIVATE_KEY }}
SLACK_COMMUNITY_NOTIFICATIONS_WEBHOOK_URL: ${{ secrets.SLACK_COMMUNITY_NOTIFICATIONS_WEBHOOK_URL }}
14 changes: 14 additions & 0 deletions .github/workflows/call-holiday-message.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Post holiday message on pull request or issue comment
on:
pull_request_target:
types: [opened]
issue_comment:
types: [created]
jobs:
call-workflow:
name: Call shared workflow
uses: learningequality/.github/.github/workflows/holiday-message.yml@main
secrets:
LE_BOT_APP_ID: ${{ secrets.LE_BOT_APP_ID }}
LE_BOT_PRIVATE_KEY: ${{ secrets.LE_BOT_PRIVATE_KEY }}
SLACK_COMMUNITY_NOTIFICATIONS_WEBHOOK_URL: ${{ secrets.SLACK_COMMUNITY_NOTIFICATIONS_WEBHOOK_URL }}
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: Update community pull requests spreadsheet
on:
pull_request_target:
types: [assigned,unassigned,opened,closed,reopened]

types: [assigned, unassigned, opened, closed, reopened, edited, review_requested, review_request_removed]
jobs:
call-update-spreadsheet:
call-workflow:
name: Call shared workflow
uses: learningequality/.github/.github/workflows/update-pr-spreadsheet.yml@main
secrets:
LE_BOT_APP_ID: ${{ secrets.LE_BOT_APP_ID }}
LE_BOT_PRIVATE_KEY: ${{ secrets.LE_BOT_PRIVATE_KEY }}
CONTRIBUTIONS_SPREADSHEET_ID: ${{ secrets.CONTRIBUTIONS_SPREADSHEET_ID }}
CONTRIBUTIONS_SHEET_NAME: ${{ secrets.CONTRIBUTIONS_SHEET_NAME }}
GH_UPLOADER_GCP_SA_CREDENTIALS: ${{ secrets.GH_UPLOADER_GCP_SA_CREDENTIALS }}