Update members #892
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update members | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 4 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Landscape | |
uses: actions/checkout@v4 | |
with: | |
path: landscape | |
- name: Checkout landscape-tools | |
uses: actions/checkout@v4 | |
with: | |
repository: jmertic/landscape-tools | |
path: landscape-tools | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
pip install --no-deps --require-hashes -r landscape-tools/requirements.txt | |
- name: Run build | |
working-directory: ./landscape | |
run: | | |
../landscape-tools/landscapemembers.py | |
- name: Save missing.csv file | |
uses: actions/upload-artifact@v4 | |
with: | |
name: missing-members | |
path: ./landscape/missing.csv | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.PAT }} | |
branch-suffix: timestamp | |
path: ./landscape | |
title: Update members | |
labels: automated-build | |
commit-message: Update members |