mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
20 lines
515 B
YAML
20 lines
515 B
YAML
name: Comment on Discussion When dist-arch/ Changes
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'dist-arch/**'
|
|
|
|
jobs:
|
|
comment_on_discussion:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Create comment on discussion #2140
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
gh api \
|
|
--method POST \
|
|
/repos/end-4/dots-hyprland/discussions/2140/comments \
|
|
-F body="dist-arch/ directory has changed in commit ${{ github.sha }} by ${{ github.actor }}."
|