Skip to content

Commit

Permalink
create gh action to update sssom context (#371)
Browse files Browse the repository at this point in the history
Co-authored-by: Anita Caron <anitacaron@users.noreply.github.com>
  • Loading branch information
anitacaron and anitacaron committed Apr 20, 2023
1 parent 5c83c44 commit 0f7fbbe
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/update_context.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Update sssom context
on:
workflow_dispatch:
schedule:
- cron: "0 12 * * 1"
jobs:
update_context:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Work around permission issue
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"

- name: Update sssom context
run: make deploy-dm

- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
if: ${{ success() }}
with:
commit-message: Update sssom.context
title: 'Update sssom.context'
body: |
This pull request updates sssom.context. Make sure you run make tests manually.
assignees: matentzn

0 comments on commit 0f7fbbe

Please sign in to comment.