Łukasz Urbański

Results 6 issues of Ł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...

bug
good first issue

```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:...

needs-triage

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...

bug

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...

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:...