Skip to content

Commit

Permalink
Merge branch 'main' into ci/fix-ref-if-main
Browse files Browse the repository at this point in the history
  • Loading branch information
uhobeike committed May 14, 2024
2 parents 1707ffb + c6a8edb commit 44d4eaa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ jobs:
async function run() {
const { owner, repo } = context.repo;
const workflow_id = 'rerun.yml';
<<<<<<< HEAD
const ref = ('${{ github.head_ref }}' === '' || '${{ github.head_ref }}' === 'main') ? 'main' : '${{ github.head_ref }}';
=======
const ref = ('${{ github.head_ref }}' === 'main') ? 'main' : '${{ github.head_ref }}';
>>>>>>> main
const run_id = context.runId;

try {
Expand Down

0 comments on commit 44d4eaa

Please sign in to comment.