Skip to content

Bump actions/checkout from 4 to 5 #7

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #7

Workflow file for this run

name: Post welcome comment
on:
# Ocurre cuando se abre o cuando se cierra una pull request
pull_request:
types: [opened,closed]
permissions:
pull-requests: write
jobs:
build:
name: Post welcome comment
runs-on: ubuntu-latest
steps:
- run: gh pr comment $PR_URL --body "Welcome to the repository!"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_URL: ${{ github.event.pull_request.html_url }}