Skip to content

Commit

Permalink
Notify maintainers every two weeks to build & deploy container
Browse files Browse the repository at this point in the history
  • Loading branch information
arisp99 committed Oct 22, 2021
1 parent 42a79fc commit 7943d99
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/notify-maintainers.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Notify Maintainers
on:
schedule:
- cron: 0 12 1,15 * *

workflow_dispatch:

jobs:
comment_on_issue:
name: Comment on issue
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Open issue
uses: actions-cool/issues-helper@v2
with:
actions: "open-issue"
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: 12

- name: Create comment
uses: actions-cool/issues-helper@v2
with:
actions: "create-comment"
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: 12
body: |
Please build the container and deploy it to the Sylabs Cloud. It has been two weeks since the last reminder.
Steps to deploy:
```bash
singularity remote login
singularity sign container.sif
singularity push container.sif library://apascha1/MIPTools/MIPTools:{tag}
```

0 comments on commit 7943d99

Please sign in to comment.