Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/PklProject
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ amends "pkl:Project"

dependencies {
["pkl.impl.ghactions"] {
uri = "package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.8.0"
uri = "package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.8.1"
}
["com.github.actions"] {
uri = "package://pkg.pkl-lang.org/pkl-pantry/com.github.actions@1.3.0"
Expand Down
4 changes: 2 additions & 2 deletions .github/PklProject.deps.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
},
"package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1": {
"type": "remote",
"uri": "projectpackage://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.8.0",
"uri": "projectpackage://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.8.1",
"checksums": {
"sha256": "04a5da66418b3be277476b13c2c34cd5538d9bcd11de054ba1d3116d21f95b30"
"sha256": "476cd931de6868b3f5e088ac741261d7beb9f4de3305564675510fd74ffb83f3"
}
},
"package://pkg.pkl-lang.org/pkl-pantry/pkl.experimental.deepToTyped@1": {
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,17 @@ jobs:
--console=plain \
npmInstall buildRemoteSite
verdict:
if: '!cancelled() && !failure()'
if: always()
needs:
- check-pkl-github-actions
- build-and-test
runs-on: ubuntu-latest
steps:
- run: 'true'
- name: Failure verdict
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: |-
echo "Some of the required jobs are either failing or were cancelled"
exit 1
upload-event-file:
runs-on: ubuntu-latest
steps:
Expand Down
Loading