diff --git a/checkout/action.yaml b/checkout/action.yaml index 63729ff..6b58d2b 100644 --- a/checkout/action.yaml +++ b/checkout/action.yaml @@ -21,8 +21,8 @@ runs: - shell: bash run: | if [ "${{ inputs.depth }}" = "0" ]; then - git clone "https://oauth2:${{ inputs.token }}@code.flowmade.one/${{ inputs.repository }}.git" . + git clone "https://oauth2:${{ inputs.token }}@git.flowmade.one/${{ inputs.repository }}.git" . else git clone --depth "${{ inputs.depth }}" --branch "${{ inputs.ref }}" \ - "https://oauth2:${{ inputs.token }}@code.flowmade.one/${{ inputs.repository }}.git" . + "https://oauth2:${{ inputs.token }}@git.flowmade.one/${{ inputs.repository }}.git" . fi diff --git a/comment-pr/action.yaml b/comment-pr/action.yaml index d6fb442..db0c690 100644 --- a/comment-pr/action.yaml +++ b/comment-pr/action.yaml @@ -34,7 +34,7 @@ runs: JSON=$(jq -n --arg body "$BODY" '{body: $body}') RESPONSE=$(curl -s -X POST \ - "https://code.flowmade.one/api/v1/repos/$REPO/issues/$PR_NUMBER/comments" \ + "https://git.flowmade.one/api/v1/repos/$REPO/issues/$PR_NUMBER/comments" \ -H "Authorization: token $TOKEN" \ -H "Content-Type: application/json" \ -d "$JSON") diff --git a/create-issue/action.yaml b/create-issue/action.yaml index f44166f..6c7fbae 100644 --- a/create-issue/action.yaml +++ b/create-issue/action.yaml @@ -61,7 +61,7 @@ runs: fi RESPONSE=$(curl -s -X POST \ - "https://code.flowmade.one/api/v1/repos/$REPO/issues" \ + "https://git.flowmade.one/api/v1/repos/$REPO/issues" \ -H "Authorization: token $TOKEN" \ -H "Content-Type: application/json" \ -d "$JSON") diff --git a/create-pr/action.yaml b/create-pr/action.yaml index 497ed91..0488c09 100644 --- a/create-pr/action.yaml +++ b/create-pr/action.yaml @@ -71,7 +71,7 @@ runs: fi RESPONSE=$(curl -s -X POST \ - "https://code.flowmade.one/api/v1/repos/$REPO/pulls" \ + "https://git.flowmade.one/api/v1/repos/$REPO/pulls" \ -H "Authorization: token $TOKEN" \ -H "Content-Type: application/json" \ -d "$JSON") diff --git a/create-tag/action.yaml b/create-tag/action.yaml index ddcc333..4392774 100644 --- a/create-tag/action.yaml +++ b/create-tag/action.yaml @@ -42,8 +42,8 @@ runs: # Configure git and create tag git config user.name forgejo-actions - git config user.email forgejo-actions@code.flowmade.one + git config user.email forgejo-actions@git.flowmade.one git tag "$NEXT_VERSION" # Push tag using token - git push "https://oauth2:${{ inputs.token }}@code.flowmade.one/${{ github.repository }}.git" "$NEXT_VERSION" + git push "https://oauth2:${{ inputs.token }}@git.flowmade.one/${{ github.repository }}.git" "$NEXT_VERSION" diff --git a/docker-push/action.yaml b/docker-push/action.yaml index 51bd8d6..29f2f5b 100644 --- a/docker-push/action.yaml +++ b/docker-push/action.yaml @@ -10,7 +10,7 @@ inputs: default: 'latest' registry: description: Registry URL - default: 'code.flowmade.one' + default: 'git.flowmade.one' username: description: Registry username default: ${{ github.repository_owner }}