Skip to content

Adding Support for Filtering Specific Subscription Id's to Include in… #80

Adding Support for Filtering Specific Subscription Id's to Include in…

Adding Support for Filtering Specific Subscription Id's to Include in… #80

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
paths:
- "docs/wiki/**"
workflow_dispatch:
env:
wiki_source_repo: "Azure/AzOps"
wiki_source_repo_dir: "Azure/AzOps/docs/wiki"
wiki_target_repo: "Azure/AzOps.wiki"
github_user_name: "github-actions"
github_email: "github-actions@github.com"
github_commit_message: "GitHub Action syncing wiki from docs/wiki"
permissions:
contents: write
jobs:
sync-wiki:
name: Sync Wiki
if: github.repository == 'Azure/AzOps'
runs-on: ubuntu-latest
steps:
- name: Checkout Source Repo
uses: actions/checkout@v4
with:
repository: ${{ env.wiki_source_repo }}
path: ${{ env.wiki_source_repo }}
- name: Checkout Wiki Repo
uses: actions/checkout@v4
with:
repository: ${{ env.wiki_target_repo }}
path: ${{ env.wiki_target_repo }}
- name: Configure Local Git
run: |
git config --global user.name $github_user_name
git config --global user.email $github_email
working-directory: ${{ env.GITHUB_WORKSPACE }}
- name: Sync docs/wiki Into Wiki Repo
run: |
rsync -avzr --delete --exclude='.git/' "$wiki_source_repo_dir/" "$wiki_target_repo"
working-directory: ${{ env.GITHUB_WORKSPACE }}
- name: Stage & Push Files Into Wiki Repo
run: |
git add .
git commit -m "$github_commit_message [$GITHUB_ACTOR/${GITHUB_SHA::8}]"
git push --set-upstream https://$GITHUB_TOKEN@github.com/$wiki_target_repo.git master
working-directory: ${{ env.wiki_target_repo }}