🔍 IntroducedBy Checker 🔍 #42
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: 🔍 IntroducedBy Checker 🔍 | |
on: | |
schedule: | |
- cron: '0 0 * * 1' # Every monday | |
workflow_dispatch: | |
jobs: | |
compliance_test: | |
runs-on: ubuntu-latest | |
name: IntroducedBy Checker | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- name: Checkout # Makes the source code available to be scanned | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Delete marked package references # Scans the source code for marked package references and deletes them | |
id: scan | |
uses: equinor/introducedby-checker@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |