-
Notifications
You must be signed in to change notification settings - Fork 75
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
34b0185
commit 24037da
Showing
1 changed file
with
26 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,26 @@ | ||
--- | ||
name: Experiment | ||
|
||
on: | ||
push: | ||
branches: [vendor-docs] | ||
schedule: | ||
# Every Monday at 6AM UTC | ||
- cron: "0 6 * * 1" | ||
|
||
jobs: | ||
vendor-docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v3 | ||
- name: Update external-docs | ||
run: | | ||
git fetch | ||
git switch external-docs | ||
wget https://raw.githubusercontent.com/canonical/real-time-ubuntu-docs/main/docs/how-to/enable-real-time-ubuntu.rst -O docs/howtoguides/enable_realtime_kernel.rst | ||
git config --global user.name 'orndorffgrant' | ||
git config --global user.email '[email protected]' | ||
git commit -am "new external docs" | ||
git rebase origin/docs | ||
git push origin external-docs --force-with-lease |