chore(main): release 10.30.1 #6428
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
# NOTE: This file should always be named `repolinter.yml` to allow | |
# workflow_dispatch to work properly | |
name: Repolinter Action | |
# NOTE: This workflow will ONLY check the default branch! | |
# Currently there is no elegant way to specify the default | |
# branch in the event filtering, so branches are instead | |
# filtered in the "Test Default Branch" step. | |
on: | |
push: | |
paths-ignore: | |
- ".github/**" # skip changes to the .github branch (workflows, etc.) | |
workflow_dispatch: | |
# only allow one instance of this workflow to be running per PR or branch, cancels any that are already running | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
repolint: | |
name: Run Repolinter | |
runs-on: ubuntu-latest | |
# don't run this job if triggered by Dependabot | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
disable-sudo: true | |
egress-policy: audit | |
- name: Test Default Branch | |
id: default-branch | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
with: | |
script: | | |
const data = await github.rest.repos.get(context.repo) | |
return data.data && data.data.default_branch === context.ref.split('/').slice(-1)[0] | |
- name: Checkout Self | |
if: ${{ steps.default-branch.outputs.result == 'true' }} | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Run Repolinter | |
if: ${{ steps.default-branch.outputs.result == 'true' }} | |
uses: newrelic/repolinter-action@3f4448f855c351e9695b24524a4111c7847b84cb # v1.7.0 | |
with: | |
config_url: https://raw.githubusercontent.com/newrelic/.github/main/repolinter-rulesets/community-plus.yml | |
output_type: issue |