Merge pull request #3455 from Elv13/token
ci: Cleanup the previous test commits.
This commit is contained in:
commit
5a27eaa973
|
@ -10,7 +10,7 @@
|
|||
|
||||
echo "Post-processing (API) documentation."
|
||||
echo "PR Number: $PR_NUMBER"
|
||||
echo "GITHUB_HEAD_REF: $GITHUB_HEAD_REF"
|
||||
echo "GITHUB_HEAD_REF: $GITHUB_REF"
|
||||
|
||||
if [ -z "$APIDOC_TOKEN" ]; then
|
||||
echo "No APIDOC_TOKEN available. Skipping."
|
||||
|
@ -40,11 +40,11 @@ cd build/apidoc
|
|||
# This will re-use already existing branches (updated PR).
|
||||
if [ "$PR_NUMBER" != "" ]; then
|
||||
BRANCH="pr-$PR_NUMBER"
|
||||
elif ["$GITHUB_HEAD_REF" != "" ] && [ "$GITHUB_HEAD_REF" != master ]; then
|
||||
elif [ "$GITHUB_REF" != "" ] && [ "$GITHUB_REF" != "refs/heads/master" ]; then
|
||||
# Use merge-base of master in branch name, to keep different branches with
|
||||
# the same name apart.
|
||||
# shellcheck disable=SC2015
|
||||
BRANCH="$GITHUB_HEAD_REF-$(cd "$REPO_DIR" \
|
||||
BRANCH="$GITHUB_REF-$(cd "$REPO_DIR" \
|
||||
&& git fetch --unshallow origin master \
|
||||
&& git rev-parse --short "$(git merge-base HEAD FETCH_HEAD || true)" || true)"
|
||||
else
|
||||
|
@ -91,7 +91,7 @@ COMMIT_MSG="Update docs for $AWESOME_VERSION via Github Actions
|
|||
Last commit message:
|
||||
$LAST_COMMIT_MSG
|
||||
|
||||
Commits: https://github.com/awesomeWM/awesome/compare/${GITHUB_BASE_REF}..${GITHUB_HEAD_REF}
|
||||
Commits: $GITHUB_COMPARE
|
||||
Build URL: $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID"
|
||||
|
||||
git commit -m "[relevant] $COMMIT_MSG"
|
||||
|
|
|
@ -151,6 +151,7 @@ jobs:
|
|||
env:
|
||||
PR_NUMBER: ${{ github.event.number }}
|
||||
APIDOC_TOKEN: ${{ secrets.AWESOME_ROBOT_TOKEN || github.token }}
|
||||
GITHUB_COMPARE: ${{ github.event.compare }}
|
||||
run: .github/scripts/apidoc.sh
|
||||
|
||||
# vim: filetype=yaml:expandtab:shiftwidth=2:tabstop=2
|
||||
|
|
Loading…
Reference in New Issue