Skip to content

Commit

Permalink
Create cog.yml
Browse files Browse the repository at this point in the history
Refs #615
  • Loading branch information
simonw authored Nov 6, 2024
1 parent 98d2c19 commit acca5f5
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/cog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Run Cog

on:
pull_request:
types: [opened, synchronize]

permissions:
contents: write
pull-requests: write

jobs:
run-cog:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'

- uses: extractions/setup-just@v2

- name: Install dependencies
run: pip install -e '.[test]'

- name: Run cog
run: just cog

- name: Check for changes
id: check-changes
run: |
if [ -n "$(git diff)" ]; then
echo "changes=true" >> $GITHUB_OUTPUT
else
echo "changes=false" >> $GITHUB_OUTPUT
fi
- name: Commit and push if changed
if: steps.check-changes.outputs.changes == 'true'
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add -A
git commit -m "Ran cog"
git push

0 comments on commit acca5f5

Please sign in to comment.