Spirea: A Mechanized Concurrent Separation Logic for Weak Persistent Memory #130
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: Notifications | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
notifications: | |
# Run whenever next-paper labelled PR is merged to main branch | |
if: ${{ github.event.pull_request.merged == true && | |
contains(github.event.pull_request.labels.*.name, 'next-paper') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: echo "NEXT=\"$(bash .github/utils/next.sh)\"" >> $GITHUB_ENV | |
- uses: Ilshidur/action-discord@master | |
if: ${{ env.DISCORD_WEBHOOK != '' }} | |
with: | |
args: ${{ fromJSON(env.NEXT) }} | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL }} |