Skip to content

Feature: New apply changes system that respect the change kinds names #21

Feature: New apply changes system that respect the change kinds names

Feature: New apply changes system that respect the change kinds names #21

Workflow file for this run

name: Check Changes
on:
pull_request_target:
branches:
- main
permissions:
pull-requests: write
jobs:
changes:
if: ${{ github.actor != 'dependabot[bot]' && !startsWith(github.head_ref, 'publish/') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0 ## Needed for changelog
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
# DO NOT BUILD ANYTHING FROM THE PR HERE https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
- run: |
npm install -g @chronus/github-pr-commenter
chronus-github-pr-commenter
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
name: Create/update comment