Skip to content

Commit

Permalink
fixup! Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
omus committed Aug 13, 2024
1 parent 5c3681f commit d971623
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ jobs:
name: Job Name
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions job-name/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ runs:
using: composite
steps:
- uses: actions/checkout@v4
if: ${{ inputs.job-name != '' }}
if: ${{ inputs.job-name == '' }}
with:
ref: ${{ github.workflow_sha }}
path: ${{ github.action_path }}/repo
- id: workflow
if: ${{ inputs.job-name != '' }}
if: ${{ inputs.job-name == '' }}
shell: bash
run: |
# Workflow job name template
Expand All @@ -38,7 +38,7 @@ runs:
workflow_ref: ${{ github.workflow_ref }}
job_key: ${{ github.job }}
- id: render
if: ${{ inputs.job-name != '' }}
if: ${{ inputs.job-name == '' }}
shell: bash
run: |
# Render job name
Expand Down

0 comments on commit d971623

Please sign in to comment.