From fa2857b485b0e9ec609f5b60993acb61316a80db Mon Sep 17 00:00:00 2001 From: GuillaumeFalourd Date: Mon, 18 Oct 2021 15:48:00 -0300 Subject: [PATCH] update workflow-call Signed-off-by: GuillaumeFalourd --- .github/workflows/34-workflow-call.yml | 9 ++++++++- .github/workflows/workflow-tester13.yml | 12 ------------ 2 files changed, 8 insertions(+), 13 deletions(-) delete mode 100644 .github/workflows/workflow-tester13.yml 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 }}