Skip to content

Commit

Permalink
workflows/actionlint: fix actionlint error
Browse files Browse the repository at this point in the history
It should be `github.event.repository.private`, not
`github.repository.private`.
  • Loading branch information
carlocab committed Oct 31, 2024
1 parent 1e2a29b commit 1869e7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
if: >
always() &&
!contains(fromJSON('[["cancelled", "skipped"]]'), needs.workflow_syntax.result) &&
!github.repository.private
!github.event.repository.private
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down

0 comments on commit 1869e7d

Please sign in to comment.