forked from acquire-project/acquire-docs
-
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.
Consolidate tests; fix automerge job (acquire-project#27)
* Consolidate tests; fix automerge job * Update test_pr.yml * Remove automerge from test_pr.yml. * Update test_pr.yml * Re-add automerge job. * wip * Re-add typing test * Specify the Test workflow must be completed before running Automerge * Update automerge.yml * Remove standalone automerge job. * Move automerge logic into test_pr.yml. * Nightly tag and release. * Move PyPI publish to the end of the release workflow. * Schedule nightly tag at 5:00 AM UTC.
- Loading branch information
Showing
8 changed files
with
253 additions
and
307 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,24 @@ | ||
name: Update nightly tag | ||
|
||
on: | ||
schedule: | ||
- cron: "0 5 * * *" # runs at 5:00 AM UTC | ||
|
||
jobs: | ||
nightly-tag: | ||
name: Update nightly tag | ||
runs-on: ubuntu-latest | ||
|
||
permissions: write-all | ||
|
||
steps: | ||
- name: Checkout local repository | ||
uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.PAT }} | ||
|
||
- name: Update nightly tag | ||
run: git tag -f nightly | ||
|
||
- name: Push tag | ||
run: git push origin nightly --force |
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
Oops, something went wrong.