Check open-feature pull request #88
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: "Check open-feature pull request" | |
on: | |
schedule: | |
- cron: '0 10 */3 * *' | |
workflow_dispatch: | |
jobs: | |
check_prs: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- name: Install dependencies | |
working-directory: ./openfeature/ci_scripts | |
run: npm install | |
- name: Check PRs | |
working-directory: ./openfeature/ci_scripts | |
run: npm run ci:check_prs_and_open_issue |