File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -259,3 +259,27 @@ jobs:
259
259
- uses : docker://rhysd/actionlint:1.7.7
260
260
with :
261
261
args : -color /github/workspace/.github/workflows/dataconnect.yml
262
+
263
+ send-notifications :
264
+ needs : [integration-test, actionlint-dataconnect-yml]
265
+ if : always()
266
+ permissions :
267
+ issues : write
268
+ runs-on : ubuntu-latest
269
+ steps :
270
+ - name : Post Comment on Issue # 6857
271
+ if : github.event_name == 'schedule'
272
+ env :
273
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
274
+ run : |
275
+ set -euo pipefail
276
+
277
+ cat >message.txt <<EOF
278
+ Result of workflow ${{ github.workflow }} at ${{ github.ref }}: ${{ job.status }}
279
+ ${{ github.event.repository.html_url }}/actions/runs/${{ github.run_id }}
280
+ job=${{ github.job }} run_id=${{ github.run_id }} run_number=${{ github.run_number }} run_attempt=${{ github.run_attempt }}
281
+ EOF
282
+
283
+ echo "Posting comment on GitHub Issue: https://github.com/firebase/firebase-android-sdk/issues/6857:"
284
+ cat message.txt
285
+ gh issue comment 6857 --body-file message.txt -R ${{ github.repository }}
You can’t perform that action at this time.
0 commit comments