Skip to content

Commit

Permalink
.github/workflows/add-label-when-promoted.yaml: add missing run com…
Browse files Browse the repository at this point in the history
…mand

In scylladb#572 `run: echo
"$GITHUB_CONTEXT"` line removed by mistake causing the workflow to fail

Adding it back

(cherry picked from commit c0a77c3)
  • Loading branch information
yaronkaikov authored and actions-user committed Jan 5, 2025
1 parent da118d7 commit 7e95252
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/add-label-when-promoted.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
<<<<<<< HEAD
run: echo "$GITHUB_CONTEXT"
- name: Set Default Branch
id: set_branch
Expand All @@ -29,6 +30,10 @@ jobs:
else
echo "stable_branch=master" >> $GITHUB_OUTPUT
fi
||||||| parent of c0a77c3 (.github/workflows/add-label-when-promoted.yaml: add missing `run` command)
=======
run: echo "$GITHUB_CONTEXT"
>>>>>>> c0a77c3 (.github/workflows/add-label-when-promoted.yaml: add missing `run` command)
- name: Checkout repository
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 7e95252

Please sign in to comment.