fix: consistent headings for docs in vcluster.yaml #244
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: Linear PR Comments | |
on: | |
pull_request_target: | |
types: [opened, edited] | |
branches: | |
- main | |
permissions: | |
pull-requests: write | |
contents: read | |
jobs: | |
add-linear-links: | |
name: Add Linear Issue Links | |
if: github.actor != 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Linear PR Commenter | |
uses: loft-sh/github-actions/.github/actions/linear-pr-commenter@linear-pr-commenter/v1 | |
with: | |
pr-number: ${{ github.event.pull_request.number }} | |
repo-owner: ${{ github.repository_owner }} | |
repo-name: ${{ github.event.repository.name }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
linear-token: ${{ secrets.LINEAR_API_KEY }} | |
timeout-minutes: 3 |