Skip to content

Distribute posts to instances based on followed hashtags in addition to followed users #8

Distribute posts to instances based on followed hashtags in addition to followed users

Distribute posts to instances based on followed hashtags in addition to followed users #8

Workflow file for this run

name: Add comment to explain Needs FEP label
on:
issues:
types:
- labeled
jobs:
add-comment:
if: github.event.label.name == 'Needs FEP'
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Add comment
run: gh issue comment "$NUMBER" --body "$BODY"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
BODY: >
This issue has been labelled as potentially needing a FEP, and contributors are welcome to [submit a FEP](https://codeberg.org/fediverse/fep/src/branch/main#submitting-a-fep) on the topic.
Note that issues may be closed without the FEP being created; that does not mean that the FEP is no longer needed.