Publish Knowledge Base Article remove-mergefields-retain-values-radwordsprocessing e10b03c570574651b63ad551f5bab7a3 #68
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
name: Publish Knowledge Base Article | |
on: | |
repository_dispatch: | |
types: [publish-kb] | |
run-name: Publish Knowledge Base Article ${{ github.event.client_payload.name }} ${{ github.event.client_payload.id }} | |
permissions: | |
contents: write | |
pull-requests: write | |
concurrency: | |
group: '${{ github.workflow }} ${{ github.event.client_payload.id }}' | |
cancel-in-progress: true | |
jobs: | |
publish_kb: | |
runs-on: ubuntu-latest | |
steps: | |
- name: configure git | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "KB Bot" | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Create branch | |
run: | | |
git checkout -b "new-kb-$name-$id" | |
cd $folder | |
echo "$content" > "$name.md" | |
git add "$name.md" | |
git commit -m "Added new kb article $name" | |
git push -u origin "new-kb-$name-$id" | |
env: | |
name: ${{ github.event.client_payload.name }} | |
content: ${{ github.event.client_payload.content }} | |
folder: ${{ github.event.client_payload.folder }} | |
id: ${{ github.event.client_payload.id }} | |
- name: Create pull request | |
run: gh pr create --fill | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |