Skip to content

Commit 57340a2

Browse files
authored
Replace reference to personnal repo by ansible-network (#97)
1 parent b3e1845 commit 57340a2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Download python script
3131
run: >-
3232
curl -o create_release_branch.py
33-
https://raw.githubusercontent.com/abikouo/github_actions/release_v2/scripts/create_release_branch.py
33+
https://raw.githubusercontent.com/ansible-network/github_actions/main/scripts/create_release_branch.py
3434
3535
- name: Compute release version and create release branch
3636
id: compute-version
@@ -59,7 +59,7 @@ jobs:
5959
- name: Download python script used to update galaxy file
6060
run: >-
6161
curl -o update_galaxy_file.py
62-
https://raw.githubusercontent.com/abikouo/github_actions/release_v2/scripts/update_galaxy_file.py
62+
https://raw.githubusercontent.com/ansible-network/github_actions/main/scripts/update_galaxy_file.py
6363
if: ${{ (steps.compute-version.outputs.release_version != '') }}
6464

6565
- name: Compute release version and create release branch

.github/workflows/release-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ jobs:
5555

5656
- name: create tag
5757
run: |
58-
curl -o create_github_tag.py https://raw.githubusercontent.com/abikouo/github_actions/release_v2/scripts/create_github_tag.py
58+
curl -o create_github_tag.py https://raw.githubusercontent.com/ansible-network/github_actions/main/scripts/create_github_tag.py
5959
python3 ./create_github_tag.py --repository ${{ github.repository }} --tag ${{ steps.read-tag.outputs.release_tag }} --branch ${{ inputs.branch_name }}
6060
env:
6161
GITHUB_TOKEN: ${{ secrets.gh_token }}
6262
if: "contains(github.event.pull_request.labels.*.name, 'ok-to-tag')"
6363

6464
- name: Parse release content
6565
run: |
66-
curl -o create_github_release.py https://raw.githubusercontent.com/abikouo/github_actions/release_v2/scripts/create_github_release.py
66+
curl -o create_github_release.py https://raw.githubusercontent.com/ansible-network/github_actions/main/scripts/create_github_release.py
6767
python3 ./create_github_release.py --repository ${{ github.repository }} --release-tag ${{ steps.read-tag.outputs.release_tag }} --release-name "${{ inputs.release_prefix }} ${{ steps.read-tag.outputs.release_tag }}"
6868
env:
6969
GITHUB_TOKEN: ${{ secrets.gh_token }}

0 commit comments

Comments
 (0)