We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7aec792 + 20c884b commit 6a0297dCopy full SHA for 6a0297d
.github/workflows/update-default.yml
@@ -28,15 +28,11 @@ jobs:
28
fi
29
env:
30
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31
- - uses: actions/github-script@v7
+
32
+ - name: Create Pull Request
33
if: steps.update_default.outputs.pushed == 'true'
34
+ uses: peter-evans/create-pull-request@v4
35
with:
- github-token: ${{ secrets.GITHUB_TOKEN }}
- script: |
36
- await github.rest.pulls.create({
37
- owner: context.repo.owner,
38
- repo: context.repo.repo,
39
- head: "update-default-sbt-${{ steps.update_default.outputs.sbt_version }}",
40
- base: "${{ github.ref_name }}",
41
- title: "update default sbt version to ${{ steps.update_default.outputs.sbt_version }}"
42
- });
+ title: "deps: Update sbt version"
+ branch: generation
+ base: ${{ github.head_ref }}
0 commit comments