Upload test results in CI when there are failing tests #195
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: Merge-by | |
on: | |
pull_request: | |
types: [opened, ready_for_review] | |
jobs: | |
rfr_add_date: | |
name: "Post merge-by date as comment" | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/github-script@v7 | |
with: | |
script: | | |
const script = require("./.github/workflows/merge-by/post-date.js"); | |
await script({ github, context }); |