Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/tag-subverso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Configure git identity
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"

- name: Create mising `verso-v*` tags in SubVerso
run: |
./tag-subverso.sh --push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.SUBVERSO_PUSH_TOKEN }}
2 changes: 1 addition & 1 deletion tag-subverso.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ trap cleanup EXIT
get_git_url() {
local repo=$1
if [[ -n "${GITHUB_TOKEN:-}" ]]; then
echo "https://${GITHUB_TOKEN}@github.com/${ORG}/${repo}.git"
echo "https://x-access-token:${GITHUB_TOKEN}@github.com/${ORG}/${repo}.git"
else
echo "git@github.com:${ORG}/${repo}.git"
fi
Expand Down
Loading