mirror of
https://github.com/irongut/CodeCoverageSummary.git
synced 2026-05-14 22:20:13 +02:00
7142272b0a
Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 1.4.4 to 1.4.5. - [Release notes](https://github.com/step-security/harden-runner/releases) - [Commits](https://github.com/step-security/harden-runner/compare/74b568e8591fbb3115c70f3436a0c6b0909a8504...dd2c410b088af7c0dc8046f3ac9a8f4148492a95) --- updated-dependencies: - dependency-name: step-security/harden-runner dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
577 B
YAML
26 lines
577 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@dd2c410b088af7c0dc8046f3ac9a8f4148492a95
|
|
with:
|
|
egress-policy: block
|
|
allowed-endpoints: >
|
|
api.github.com:443
|
|
|
|
- name: Auto Assign PR
|
|
uses: samspills/assign-pr-to-author@b313feb250ff414d3aff26525b986f080ee7bd7a
|
|
with:
|
|
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|