Files
code-coverage-summary/.github/workflows/auto-assign-pr.yml
T
dependabot[bot] e8b30e8bdc Bump samspills/assign-pr-to-author from 1.0.1 to 1.0.2
Bumps [samspills/assign-pr-to-author](https://github.com/samspills/assign-pr-to-author) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/samspills/assign-pr-to-author/releases)
- [Commits](https://github.com/samspills/assign-pr-to-author/compare/223a87a821f7e7447cfb5221bc53ceeb633341c2...b313feb250ff414d3aff26525b986f080ee7bd7a)

---
updated-dependencies:
- dependency-name: samspills/assign-pr-to-author
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-31 01:15:14 +00:00

24 lines
581 B
YAML

# Assign PR to Author
# https://github.com/samspills/assign-pr-to-author
name: Auto Assign PR
on:
pull_request:
types: [opened]
jobs:
assignAuthor:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@74b568e8591fbb3115c70f3436a0c6b0909a8504
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: Auto Assign PR
uses: samspills/assign-pr-to-author@b313feb250ff414d3aff26525b986f080ee7bd7a
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'