.github/workflows/test.yml in rubicure-1.3.1 vs .github/workflows/test.yml in rubicure-1.3.2

- old
+ new

@@ -1,9 +1,16 @@ name: test on: push: + branches: + - master + pull_request: + types: + - opened + - synchronize + - reopened schedule: - cron: "0 10 * * 5" # JST 19:00 (Fri) env: CI: "true" @@ -84,10 +91,11 @@ continue-on-error: ${{ matrix.allow_failures == 'true' }} - name: Slack Notification (not success) uses: homoluctus/slatify@master if: "! success()" + continue-on-error: true with: job_name: ${{ format('*build* ({0})', matrix.ruby) }} type: ${{ job.status }} icon_emoji: ":octocat:" url: ${{ secrets.SLACK_WEBHOOK }} @@ -101,9 +109,10 @@ steps: - name: Slack Notification (success) uses: homoluctus/slatify@master if: always() + continue-on-error: true with: job_name: '*build*' type: ${{ job.status }} icon_emoji: ":octocat:" url: ${{ secrets.SLACK_WEBHOOK }}