Closed joukosaastamoinen closed 2 years ago
Got the same issue here: https://github.com/manuelhenke/nuxt-envalid/actions/runs/3150929118/jobs/5124272833
Happens for me as well.
name: Greetings
on: [pull_request_target]
jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
pr-message: 'Gratulerer med din fΓΈrste PR!'
Same problem, since yesterday. These are our settings: https://github.com/unitaryfund/mitiq/blob/master/.github/workflows/greeting.yml
Have the same problem with the default workflow configuration
Just noticed the problem for one of my repos as well.
If the action is non-blocking for your repo, you can use jobs.
name: Greetings
on: [pull_request_target]
jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/first-interaction@v1
continue-on-error: true
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
pr-message: 'Something'
This action should be using release tags so that we can lock to a working version. The continue-on-error workaround is a good short-term solution.
Same here with default configuration.
Just made a PR to fix this. But I don't know who is supposed to review it.
same here https://github.com/osscameroon/js-generator/pull/137
It looks like it fails when I (as owner) open an issue, only me. That's weird!
name: Greetings
on: [pull_request, issues]
jobs:
greeting:
runs-on: ubuntu-latest
permissions:
pull-requests: write
issues: write
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'Thanks for opening this issue π ! We really appreciate your work. Happy Coding ππ !'' first issue'
pr-message: 'Thanks for opening this pull request π ! We really appreciate your work. Happy Coding ππ !'' first pull request'
Our greeting action goes wrong too: https://github.com/apache/inlong/actions/runs/3175464176/jobs/5173530839
Hi everyone! Thanks for reporting this, we're aware of the issue
v1.1.1
of this action has been released with the change from #103. Reference to v1
has been updated to v1.1.1
as well.
Thanks!
very much appreciated!
Hey! Our team has been enjoying this action for a long time now, but today we started getting this error: