Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kimromi/issue-from-collaborators-only

🫥 [GitHub Actions] Delete issues and issue comments other than the repository collaborators
https://github.com/kimromi/issue-from-collaborators-only

comments github-actions issues

Last synced: about 2 months ago
JSON representation

🫥 [GitHub Actions] Delete issues and issue comments other than the repository collaborators

Awesome Lists containing this project

README

        

# kimromi/issue-from-collaborators-only

GitHub Actions to delete issues and issue comments other than the repository collaborators.

```yaml
name: Protect issues and comments
on:
issues:
types:
- opened
issue_comment:
types:
- created
jobs:
protect-issues:
runs-on: ubuntu-latest
steps:
- uses: kimromi/issue-from-collaborators-only@main
with:
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
```