yaml edits #1
Workflow file for this run
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: monthly lcsh check | |
on: | |
push: | |
branches: | |
- github-actions | |
# on: | |
# schedule: | |
# - chron: * 9 1 * * | |
jobs: | |
monthly-run: | |
name: Run monthly LCSH check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r dev-requirements.txt | |
python -m pip install -r requirements.txt | |
- name: Create branch | |
run: git checkout -b monthly_check | |
- name: Run script | |
run: | | |
python monthly_lcsh_check.py | |
- name: Create issue | |
run: | | |
git diff --quiet -- data/ || new_issue_url=$(gh issue create \ | |
--title "$TITLE" \ | |
--assignee "$ASSIGNEES" \ | |
--body "$BODY") | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
TITLE: Changes to ACC LCSH | |
ASSIGNEES: charlottekostelic | |
BODY: | | |
### Changed: | |
+ Updated list of terms in: data/acc_in.csv | |
+ See lcsh.log for lists of changed and deprecated terms | |
- name: Commit and push changed files | |
run: | | |
git config user.name "Charlotte Kostelic" | |
git config user.email "[email protected]" | |
git add lcsh.log | |
git add data/* | |
git commit -a -m "Monthly LCSH Check" | |
git push --set-upstream origin monthly_check |