Skip to content

Commit

Permalink
experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
orndorffgrant committed Jul 26, 2024
1 parent 34b0185 commit 24037da
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/vendor-docs.yaml
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 'orndorffgrant@users.noreply.github.com'
git commit -am "new external docs"
git rebase origin/docs
git push origin external-docs --force-with-lease

0 comments on commit 24037da

Please sign in to comment.