-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AWS: Add service FAQs to the table (#145)
- Loading branch information
Showing
4 changed files
with
90 additions
and
74 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 |
---|---|---|
|
@@ -21,42 +21,41 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install jq | ||
run: sudo apt-get install jq -y | ||
- name: Install jq | ||
run: sudo apt-get install jq -y | ||
|
||
- name: Generate Content | ||
run: sh generate-content.sh | ||
- name: Generate Content | ||
run: set -e; bash generate-content.sh | ||
|
||
- name: Commit changes | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git status | ||
git add . | ||
if git diff-index --quiet HEAD --; then | ||
echo "No changes to commit" | ||
else | ||
git commit -m "[bot] Generate doc content for AWS services" --no-verify | ||
fi | ||
- name: Commit changes | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git status | ||
git add . | ||
if git diff-index --quiet HEAD --; then | ||
echo "No changes to commit" | ||
else | ||
git commit -m "[bot] Generate doc content for AWS services" --no-verify | ||
fi | ||
- name: Create pull request | ||
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }} | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: Update document | ||
committer: GitHub <[email protected]> | ||
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | ||
signoff: false | ||
branch: update-doc-patches | ||
branch-suffix: random | ||
delete-branch: true | ||
title: '[bot] Generate doc content for AWS services' | ||
body: | | ||
Updated the main document | ||
- Auto-generated by [https://github.com/peter-evans/create-pull-request] | ||
- name: Create pull request | ||
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }} | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: Update document | ||
committer: GitHub <[email protected]> | ||
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | ||
signoff: false | ||
branch: update-doc-patches | ||
branch-suffix: random | ||
delete-branch: true | ||
title: '[bot] Generate doc content for AWS services' | ||
body: | | ||
Updated the main document | ||
- Auto-generated by [https://github.com/peter-evans/create-pull-request] |
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
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
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