File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 76
76
run : echo "PYROSCOPE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
77
77
- name : Update homebrew formulas
78
78
run : |
79
- git config --global url."https://x-access-token:$(echo "${HOMEBREW_GITHUB_TOKEN}" | xargs)@github.com/pyroscope-io/homebrew-brew".insteadOf "https://github.com/pyroscope-io/homebrew-brew"
79
+ git config --global url."https://x-access-token:$(echo "${HOMEBREW_GITHUB_TOKEN}" | xargs)@github.com/pyroscope-io/homebrew-brew".insteadOf "https://github.com/pyroscope-io/homebrew-brew" 2> /dev/null
80
80
git config --global user.email "[email protected] "
81
81
git config --global user.name "Pyroscope Bot <[email protected] >"
82
82
git clone https://github.com/pyroscope-io/homebrew-brew ../homebrew-brew
Original file line number Diff line number Diff line change 26
26
git add README.md
27
27
git commit -m 'docs: updates the list of contributors in README'
28
28
gh auth status
29
- git push --force https://x-access-token:${{ secrets.BOT_GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:main
29
+ git push --force https://x-access-token:${{ secrets.BOT_GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:main 2> /dev/null
30
30
fi
31
31
env :
32
32
GITHUB_TOKEN : ${{ secrets.BOT_GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ tools/update_examples_pr:
12
12
git checkout -b gh_bot_examples_update
13
13
git add .
14
14
git commit -m "chore(examples): update examples"
15
- git push -f https://x-access-token:$(GITHUB_TOKEN)@github.com/$(GITHUB_REPOSITORY).git gh_bot_examples_update
15
+ git push -f https://x-access-token:$(GITHUB_TOKEN)@github.com/$(GITHUB_REPOSITORY).git gh_bot_examples_update 2> /dev/null
16
16
gh pr create --head gh_bot_examples_update --title "chore(examples): update examples" --body "make tools/update_examples" --repo $(GITHUB_REPOSITORY) || \
17
17
gh pr edit gh_bot_examples_update --title "chore(examples): update examples" --body "make tools/update_examples" --repo $(GITHUB_REPOSITORY)
18
18
You can’t perform that action at this time.
0 commit comments