If the Workdir field doesn't ends with the filepath seperator,
bad things happen
Fixes #33
Sample for host mode on windows, needs be adjusted for linux e.g. replace pwsh with bash
Also fixes
```yaml
on: push
jobs:
_:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
with:
path: subdir/action
- uses: ./subdir/action
```
with an action.yml in the same repo
```yaml
runs:
using: composite
steps:
- run: |
echo "Hello World"
shell: pwsh
```
> I want to know why the CI hasn't been triggered.
ci has been triggered but no commit status was created.
https://gitea.com/gitea/act_runner/actions/runs/74
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
If the Workdir field doesn't ends with the filepath seperator,
bad things happen
Fixes #33
Sample for host mode on windows, needs be adjusted for linux e.g. replace pwsh with bash
Also fixes
with an action.yml in the same repo
I want to know why the CI hasn't been triggered.
ci has been triggered but no commit status was created.
https://gitea.com/gitea/act_runner/actions/runs/74
@Zettat123 Could you please help do some tests and review?
This change works well in my test. So LGTM.