We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6d2d5d commit 1bfcbfdCopy full SHA for 1bfcbfd
1 file changed
.github/workflows/R-CMD-check.yml
@@ -232,12 +232,19 @@ jobs:
232
with:
233
github-token: ${{ secrets.GITHUB_TOKEN }}
234
script: |
235
- github.rest.issues.createComment({
+ await github.rest.issues.createComment({
236
owner: context.repo.owner,
237
repo: context.repo.repo,
238
issue_number: 170,
239
body: 'Scheduled workflow has failed: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}'
240
});
241
+
242
+ await github.rest.issues.update({
243
+ owner: context.repo.owner,
244
+ repo: context.repo.repo,
245
+ issue_number: 170,
246
+ state: 'open'
247
+ });
248
249
rev-dep-check:
250
runs-on: ubuntu-latest
0 commit comments