-
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
1 parent
6641ac6
commit 29565f9
Showing
1 changed file
with
41 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,41 @@ | ||
name: automation-nightly | ||
on: | ||
workflow_dispatch: | ||
# Run daily at 11:45 UTC. | ||
schedule: | ||
- cron: '45 11 * * *' | ||
|
||
jobs: | ||
# Updates the timestamp in README.md, which triggers a "push" event. | ||
bump_timestamp: | ||
permissions: | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: nightly | ||
|
||
- name: Set update date variable | ||
run: | | ||
UPDATE_DATE=$(date) | ||
echo "UPDATE_DATE=${UPDATE_DATE}" >> $GITHUB_ENV | ||
- name: Update last sync date to launchpad | ||
env: | ||
BEGIN_TAG: "<!-- BEGIN SYNC INFO -->" | ||
END_TAG: "<!-- END SYNC INFO -->" | ||
run: | | ||
UPDATE=$(cat README.md | perl -0777 -pe 's#(${{ env.BEGIN_TAG }})(?:.|\n)*?(${{ env.END_TAG }})#${1}\nLast sync to launchpad: ${{ env.UPDATE_DATE }}\n${2}#g') | ||
echo "${UPDATE}" > README.md | ||
- uses: EndBug/add-and-commit@v9 | ||
with: | ||
message: "bump timestamp" | ||
default_author: github_actions | ||
|
||
call-sync-repo: | ||
uses: ./.github/workflows/sync-repo.yaml | ||
secrets: | ||
GIT_SSH_PRIVATE_KEY: ${{ secrets.GIT_SSH_PRIVATE_KEY }} | ||
GIT_SSH_KNOWN_HOSTS: ${{ secrets.GIT_SSH_KNOWN_HOSTS }} |