mirror of
https://github.com/nektos/act.git
synced 2026-04-26 01:15:51 +03:00
[GH-ISSUE #188] ERRO[0000] Error evaluating expression 'Boolean(!contains(github.event.head_commit.message, '[ci skip]'))' - TypeError: Cannot access member 'message' of undefined #127
Labels
No labels
area/action
area/cli
area/docs
area/image
area/runner
area/workflow
backlog
confirmed/not-planned
kind/bug
kind/discussion
kind/external
kind/feature-request
kind/question
meta/duplicate
meta/invalid
meta/need-more-info
meta/resolved
meta/wontfix
meta/workaround
needs-work
pull-request
review/not-planned
size/M
size/XL
size/XXL
stale
stale-exempt
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/act#127
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @znz on GitHub (Apr 7, 2020).
Original GitHub issue: https://github.com/nektos/act/issues/188
I try
acton https://github.com/ruby/ruby and https://github.com/rurema/doctree .But
actcauses errors.On doctree:
On ruby:
@cplee commented on GitHub (Apr 16, 2020):
@znz - act uses an empty JSON object for the event by default...but you can create your own and pass in via
act -e path-to-your-event.json@chrispcode commented on GitHub (May 16, 2020):
How?
@github-actions[bot] commented on GitHub (Jul 16, 2020):
Issue is stale and will be closed in 7 days unless there is new activity
@github-actions[bot] commented on GitHub (Sep 15, 2020):
Issue is stale and will be closed in 7 days unless there is new activity
@brunowego commented on GitHub (Aug 23, 2021):
@cplee I'm a little lost, if you can help me, I appreciate it. I try something like this, but without success:
What is the correct schema for this?
@ChristopherHX commented on GitHub (Aug 23, 2021):
Should be
Docs: https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#push
This is only up to 99% the correct schema, because github actions removes some webhook fields from the event payload.
On github your job will be skipped, because
[skip ci]in a commit message will stop any jobs to run. (this is a feature which cannot be disabled on github.com)@brunowego commented on GitHub (Aug 23, 2021):
Thanks a lot @ChristopherHX. You saved my day!