-
Notifications
You must be signed in to change notification settings - Fork 36
Conversation
I gave it a try and I got this error:
You may want to downgrade to node16 |
I was unsure if |
Currently only |
@dobladov Can you publish your action please ? It looks as if this repo is not being actively maintained. |
@ragmondo I would still prefer if @Sibz continues being the maintainer, I'm not as knowledgable about the action internals, I only did some maintenance work for this PR. I published my version on the marketplace, in case this repository stays unmaintained. You can use the action with I will do some testing tomorrow to see if it works properly. |
Sorry been away and isolated from the internet. I have some catching up to do. |
@dobladov I've added you as a collaborator as I do need help, I'm a bit overwhelmed at the moment. |
@guibranco thanks for approving, I still need someone to approve the check before merging. |
In case it helps others, here is an alternative solution to create statuses, currently using node More info about the request: https://docs.github.com/en/rest/commits/statuses?apiVersion=2022-11-28#create-a-commit-status - name: Create status
uses: octokit/[email protected]
with:
route: POST /repos/{owner}/{repo}/statuses/{sha}
owner: ${{ github.repository_owner }}
repo: '${{ github.event.repository.name }}'
sha: ${{ github.sha }}
state: error, failure, pending, success
target_url: ${{ env.JOB_URL }}
context: ${{ env.STATUS_DESCRIPTION }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
@dobladov I am currently using an updated V2 version (a fork of this). If anyone is interested in trying it out, please use this URL: https://github.com/guibranco/github-status-action-v2. I am curious to know whether the owner of this repository will return to approve or merge these PRs, or if they have abandoned all projects in their account. Their last activity on GitHub was in August 2023, and the last commit to this repository was over three years ago. |
The action needs to be updated in order to keep workig: https://github.blog/changelog/2023-05-04-github-actions-all-actions-will-run-on-node16-instead-of-node12/
@vercel/ncc
instead of deprecated@zeit/ncc
16
createCommitStatus
instead of deprecatedcreateCommit
actions/checkout@v3
Fixes: #37