-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -8,6 +8,11 @@ on: | |
branches: | ||
- main | ||
workflow_dispatch: | ||
schedule: | ||
# Runs at 10:00 UTC from March to November (PDT, UTC-7) | ||
- cron: '0 10 * 3-11 *' | ||
# Runs at 11:00 UTC from November to March (PST, UTC-8) | ||
- cron: '0 11 * 1-3,11,12 *' | ||
|
||
jobs: | ||
|
||
|
@@ -48,7 +53,7 @@ jobs: | |
- name: Push Slack Notification | ||
uses: slackapi/[email protected] | ||
with: | ||
channel-id: ${{ secrets.SLACK_CHANNEL_ID_GITHUB_NOTIFICATION }} | ||
channel-id: ${{ secrets.SLACK_CHANNEL_ID_API_INTEGRATION_TESTS }} | ||
payload: | | ||
{ | ||
"text": "${{ github.repository }}: API Integration Tests have been completed. Check the results at github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}", | ||
|