feat: add ignore input to suppress alerts for specific packages #1758
Workflow file for this run
This file contains hidden or 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: 'Continuous Integration' | |
| on: push | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Get node version | |
| id: node | |
| run: echo "::set-output name=version::$(node -v)" | |
| - name: Get node_modules cache | |
| uses: actions/cache@v4 | |
| id: node_modules | |
| with: | |
| path: | | |
| **/node_modules | |
| key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}-${{ steps.node.outputs.version }} | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Build | |
| run: yarn all | |
| - name: Run action | |
| uses: ./ | |
| with: | |
| token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
| # org: ${{ secrets.ORG_NAME }} | |
| # enterprise: ${{ secrets.ENTERPRISE_NAME }} | |
| # microsoft_teams_webhook: ${{ secrets.MICROSOFT_TEAMS_WEBHOOK }} | |
| # slack_webhook: ${{ secrets.SLACK_WEBHOOK }} | |
| # severity: low,medium | |
| # ecosystem: npm,rubygems | |
| # count: 20 | |
| # pager_duty_integration_key: ${{ secrets.PAGER_DUTY_INTEGRATION_KEY }} | |
| # zenduty_api_key: ${{ secrets.ZENDUTY_API_KEY }} | |
| # zenduty_service_id: ${{ secrets.ZENDUTY_SERVICE_ID }} | |
| # zenduty_escalation_policy_id: ${{ secrets.ZENDUTY_ESCALATION_POLICY_ID }} | |
| # email_from: ${{ secrets.EMAIL_FROM }} | |
| # email_list: ${{ secrets.EMAIL_BCC_LIST }} | |
| # email_transport_smtp_user: ${{ secrets.EMAIL_TRANSPORT_SMTP_USER }} | |
| # email_transport_smtp_password: ${{ secrets.EMAIL_TRANSPORT_SMTP_PASSWORD }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Release (dry-run) | |
| run: yarn release --dry-run | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |