Łukasz Urbański
Łukasz Urbański
**Describe the bug** 1. A job triggers an action X which call the vault-action. 2. New env variable Y is set and has value VALUE1. 3. Job triggers the action...
```yaml - name: Configure AWS credentials uses: aws-actions/[email protected] with: role-to-assume: XXXX aws-region: us-west-1 aws-access-key-id: XXX aws-secret-access-key: XXX role-duration-seconds: 3600 role-skip-session-tagging: true - name: Configure AWS credentials uses: aws-actions/[email protected] with: role-to-assume:...
Hi, Normal configuration with list of reviewer works. Thanks a lot. It is very useful action. I have an issue with using github team. The action doesn't add reviewers from...
The situation. 1. Three jobs with lock are run. The locks has the same name. 2. The first job receive a lock. Second and third wait for the lock. 3....
Hi, When we have manually triggered workflows which last very long. There is a need to have a lock, but is not useful to wait for it endlessly. For example...
Lock is not released when lock name is passed through internal action and it is concated with input.
Example ```yaml name: Feature Pull Requests and merged PR. concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true on: pull_request: branches: [master] workflow_dispatch: jobs: Test-run-lock: runs-on: [ label ] steps:...