feat(workflow): Make the setup less painful to write
fix fix workflow fix fix fix probably now... fix maybe probably, for sure
This commit is contained in:
@@ -19,15 +19,7 @@ jobs:
|
||||
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/scripts/PyGithub-requirement.txt
|
||||
|
||||
- name: Install dependencies
|
||||
run: pip install -r .github/workflows/scripts/PyGithub-requirement.txt
|
||||
- uses: $/.github/workflows/setup/pygithub
|
||||
|
||||
- name: Notify Authors
|
||||
env:
|
||||
|
||||
@@ -19,15 +19,7 @@ jobs:
|
||||
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/scripts/PyGithub-requirement.txt
|
||||
|
||||
- name: Install dependencies
|
||||
run: pip install -r .github/workflows/scripts/PyGithub-requirement.txt
|
||||
- uses: $/.github/workflows/setup/pygithub
|
||||
|
||||
- name: Notify Authors
|
||||
env:
|
||||
|
||||
@@ -19,15 +19,7 @@ jobs:
|
||||
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/scripts/PyGithub-requirement.txt
|
||||
|
||||
- name: Install dependencies
|
||||
run: pip install -r .github/workflows/scripts/PyGithub-requirement.txt
|
||||
- uses: $/.github/workflows/setup/pygithub
|
||||
|
||||
- name: Update Issue Title
|
||||
env:
|
||||
|
||||
@@ -25,15 +25,7 @@ jobs:
|
||||
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/scripts/PyGithub-requirement.txt
|
||||
|
||||
- name: Install dependencies
|
||||
run: pip install -r .github/workflows/scripts/PyGithub-requirement.txt
|
||||
- uses: $/.github/workflows/setup/pygithub
|
||||
|
||||
- name: Notify Authors
|
||||
env:
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
name: 'Setup PyGithub'
|
||||
runs:
|
||||
using: 'composite'
|
||||
steps:
|
||||
- uses: actions/checkout@v7
|
||||
- uses: actions/setup-python@v7
|
||||
with:
|
||||
python-version: '3.14'
|
||||
cache: 'pip'
|
||||
cache-dependency-path: |
|
||||
.github/workflows/scripts/PyGithub-requirement.txt
|
||||
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: pip install -r .github/workflows/scripts/PyGithub-requirement.txt
|
||||
|
||||
Reference in New Issue
Block a user