Skip to content

add automation file

add automation file #1

Workflow file for this run

name: Comment on PR
on:
pull_request:
types:
- opened
- synchronize
jobs:
comment_on_pr:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Check if PR targets main
run: echo "Is Main Branch: ${{ github.event.pull_request.base.ref == 'main' }}"

Check failure on line 18 in .github/workflows/comment.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/comment.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
- name: Check for changes in ofertas.ts
id: check_changes
run: |
if git diff --name-only ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }} | grep -q "ofertas.ts"; then
echo "Changes found in ofertas.ts"
echo "::set-output name=changes::true"
else
echo "No changes in ofertas.ts"
echo "::set-output name=changes::false"
fi
- name: Comment on PR if there are changes in ofertas.ts
if: steps.check_changes.outputs.changes == 'true'
uses: actions/github-script@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const message = `Hey there! It looks like there are new changes in 'ofertas.ts'. Please review the updates. Thank you!`;
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: message,
});