forked from rhinstaller/anaconda-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
infra: introduce daily cron job to trigger tests against latest compose
- Loading branch information
Showing
2 changed files
with
25 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,21 @@ | ||
name: nightly | ||
on: | ||
schedule: | ||
- cron: '0 1 * * *' | ||
# can be run manually on https://github.com/rhinstaller/anaconda-webui/actions | ||
workflow_dispatch: | ||
jobs: | ||
trigger: | ||
permissions: | ||
statuses: write | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Trigger updates-testing scenario | ||
run: | | ||
make bots | ||
mkdir -p ~/.config/cockpit-dev | ||
echo "${{ github.token }}" >> ~/.config/cockpit-dev/github-token | ||
bots/tests-trigger --force "-" "${TEST_OS}/compose-${COMPOSE_ID}" |
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