We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 885b47c commit 93d0fcaCopy full SHA for 93d0fca
.github/workflows/main.yml
@@ -123,8 +123,16 @@ jobs:
123
steps:
124
- name: Checkout repository
125
uses: actions/checkout@v2
126
+
127
+ - uses: jwalton/gh-find-current-pr@v1
128
+ id: findPr
129
with:
- ref: ${{ github.event.pull_request.head.sha }}
130
+ github-token: ${{ secrets.GITHUB_TOKEN }}
131
132
+ - name: Checkout PR
133
+ uses: dawidd6/action-checkout-pr@v1
134
+ with:
135
+ pr: steps.findPr.outputs.number
136
137
- uses: actions/setup-dotnet@v1
138
@@ -146,7 +154,6 @@ jobs:
146
154
author_name: Github Actions
147
155
author_email: actions@github.com
148
156
message: Automated dotnet-format update
149
150
157
env:
151
158
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
152
159
0 commit comments