I've got Action:
on:
push:
jobs:
test_push_event:
runs-on: ubuntu-latest
steps:
- run: echo 'runs?'
It runs when I push branch from my PC, but doesn't run, when I push branch with my PAT from another scheduled Action. I've tried to change tokens, still the same.
Updated code is pushed to origin https://{gitHubToken}:x-oauth-basic@github.com/{repositoryOwner}/{repositoryName}.git, may it cause the issue?