Skip to content

Commit

Permalink
RFC Website Workflow Sync (#27)
Browse files Browse the repository at this point in the history
A workflow to sync this repository with the rfc website.
  • Loading branch information
jimstir authored Mar 26, 2024
1 parent 2eaa794 commit 7698e60
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/website-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Website Sync

on:
pull_request:
types: [closed]
branches:
- main

jobs:
sync:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Clone Website Repo
run: |
git clone git@github.com:vacp2p/rfc-website.git
cd rfc-website
git config --local user.email "actions@github.com"
git config --local user.name "GitHub Actions"
- name: List of changed files
id: changed_files
run: |
echo "::set-output name=files::$(git diff --name-only ${{ github.event.before }} ${{ github.sha }})"
- name: Copy changed files to Website Repo
run: |
for file in ${{ steps.changed_files.outputs.files }}; do
cp --parents "$file" rfc-website/
done
- name: Push changes to Website Repo
run: |
cd rfc-website
git add .
git commit -m "Sync website"
git push origin main

0 comments on commit 7698e60

Please sign in to comment.