diff --git a/.github/workflows/34-workflow-call.yml b/.github/workflows/34-workflow-call.yml index 736e7660b5..68ebab97c9 100644 --- a/.github/workflows/34-workflow-call.yml +++ b/.github/workflows/34-workflow-call.yml @@ -4,9 +4,16 @@ on: push: jobs: - call-workflow-passing-data: + call-workflow-commit-hash: uses: GuillaumeFalourd/poc-github-actions/.github/workflows/33-reusable-workflow.yml@ba6294c776b98a3b4f28e8a0b804b71e4b8d0b48 with: username: Guillaume secrets: token: ${{ secrets.GITHUB_TOKEN }} + + call-workflow-branch-ref: + uses: GuillaumeFalourd/poc-github-actions/.github/workflows/33-reusable-workflow.yml@main + with: + username: Guillaume + secrets: + token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/workflow-tester13.yml b/.github/workflows/workflow-tester13.yml deleted file mode 100644 index 46a1744a00..0000000000 --- a/.github/workflows/workflow-tester13.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Test 13 - -on: - push: - -jobs: - call-workflow: - uses: GuillaumeFalourd/poc-github-actions/.github/workflows/33-reusable-workflow.yml@main - with: - username: Guillaume - secrets: - token: ${{ secrets.GITHUB_TOKEN }}