feat(workflow): Added workflow to update the issue title automatically (#153)

* feat(workflow): Added a workflow to automatically update the issue title so that it contains the plugin name

* improves matching

---------

Co-authored-by: Lemmy <studio@quadbyte.net>
This commit is contained in:
Spyridon Siarapis
2026-07-29 15:47:29 -04:00
committed by GitHub
co-authored by Lemmy
parent ba12f4c131
commit 3e10abccb9
2 changed files with 95 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
name: Update title of issue to represent the plugin
on:
issues:
types: [opened]
permissions:
contents: read
issues: write
jobs:
update-issue-title:
runs-on: ubuntu-latest
if: github.repository == 'noctalia-dev/community-plugins'
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: '3.14'
cache: 'pip'
cache-dependency-path: |
.github/workflows/notify-plugin-authors-requirements.txt
- name: Install dependencies
run: pip install -r .github/workflows/notify-plugin-authors-requirements.txt
- name: Update Issue Title
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: ${{ github.repository }}
ISSUE_NUMBER: ${{ github.event.issue.number }}
run: python3 .github/workflows/issues-update-title.py