Skip to content

Commit

Permalink
Try finding single var
Browse files Browse the repository at this point in the history
  • Loading branch information
PrincessMadMath committed Dec 16, 2024
1 parent 5bc5b75 commit e6308df
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,33 @@ on:
push:
branches:
- "renovate/**"
- "feature/**"

# Prevent duplicate runs if Renovate falls back to creating a PR
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
# concurrency:
# group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
# cancel-in-progress: true

jobs:
ci:
runs-on: ubuntu-latest


steps:
- name: Log GitHub Context Variables
run: |
echo "head_ref: ${{ github.head_ref }}"
echo "ref_name: ${{ github.ref_name }}"
echo "ref: ${{ github.ref }}"
echo "sha: ${{ github.sha }}"
echo "workflow: ${{ github.workflow }}"
echo "event_name: ${{ github.event_name }}"
echo "actor: ${{ github.actor }}"
echo "repository: ${{ github.repository }}"
echo "repository_owner: ${{ github.repository_owner }}"
echo "run_id: ${{ github.run_id }}"
echo "run_number: ${{ github.run_number }}"
- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand Down

0 comments on commit e6308df

Please sign in to comment.