-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add protected branch support to the documentation (#171)
- Loading branch information
Showing
1 changed file
with
27 additions
and
2 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 |
---|---|---|
|
@@ -100,8 +100,8 @@ jobs: | |
token: ${{ secrets.PAT_TOKEN }} | ||
- name: Commit files | ||
run: | | ||
git config --local user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --local user.name "github-actions[bot]" | ||
git config --local user.email "test@test.com" | ||
git config --local user.name "Test" | ||
git commit -a -m "Add changes" | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
|
@@ -162,6 +162,31 @@ jobs: | |
branch: ${{ github.ref }} | ||
``` | ||
An example workflow to push to a protected branch inside your own repository. Be aware that it's necessary to use a personal access token, and maybe it is a good idea to specify the force-with-lease flag in case of sync and push errors: | ||
```yaml | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
fetch-depth: 0 | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- name: Commit files | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Test" | ||
git commit -a -m "Add changes" | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.PAT_TOKEN }} | ||
repository: Test/test | ||
force_with_lease: true | ||
``` | ||
### Inputs | ||
| name | value | default | description | | ||
|