In your example:
steps:
- uses: actions/checkout@master
- uses: harupy/comment-on-pr@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
filename: template.md
Does the step actions/checkout@master is really necessary for add a comment on a PR ?
Pipeline would be slightly faster without checkout step.
In your example:
Does the step
actions/checkout@masteris really necessary for add a comment on a PR ?Pipeline would be slightly faster without checkout step.