Skip to content

Commit

Permalink
Should I require set +e even after this change?
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Nov 1, 2024
1 parent 51faa13 commit c2cddc8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/notify-nixpkgs-news.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ jobs:
set -x
# Passing example for test
[[ '${{ needs.detect.outputs.GH-846 }}' == 'true' ]] && \
if [[ '${{ needs.detect.outputs.GH-846 }}' == 'true' ]]; then
gh issue comment '846' --body "🤖(GH-846): https://github.com/NixOS/nixpkgs/tree/nixos-unstable looks like merged https://github.com/NixOS/nixpkgs/commit/3137334d7556e24e3f582681142e505b4d7915a8"
fi
[[ '${{ needs.detect.outputs.GH-902 }}' == 'true' ]] && \
if [[ '${{ needs.detect.outputs.GH-902 }}' == 'true' ]]; then
gh issue comment '902' --body "🤖(GH-846): https://github.com/NixOS/nixpkgs/tree/nixos-unstable looks like merged https://github.com/NixOS/nixpkgs/commit/67d8538ef6a8b6933de55c09dfcad679a5618868"
fi

0 comments on commit c2cddc8

Please sign in to comment.