We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 038c1f7 commit cce129dCopy full SHA for cce129d
src/blocks/blockCTATransitions.ts
@@ -40,7 +40,11 @@ export const blockCTATransitions = base.createBlock({
40
},
41
{
42
id: "auto-commit-action",
43
- uses: "stefanzweifel/git-auto-commit-action@v5",
+ uses: resolveUses(
44
+ "stefanzweifel/git-auto-commit-action",
45
+ "v5",
46
+ options.workflowsVersions,
47
+ ),
48
with: {
49
commit_author:
50
"The Friendly Bingo Bot <[email protected]>",
@@ -52,7 +56,11 @@ export const blockCTATransitions = base.createBlock({
52
56
53
57
54
58
if: "steps.auto-commit-action.outputs.changes_detected == 'true'",
55
- uses: "mshick/add-pr-comment@v2",
59
60
+ "mshick/add-pr-comment",
61
+ "v2",
62
63
64
65
issue: "${{ github.event.pull_request.number }}",
66
message: [
0 commit comments