Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kbrashears5/github-action-auto-accept-collabs
Github Action to auto accept all collaboration invites
https://github.com/kbrashears5/github-action-auto-accept-collabs
accept action auto collaboration collabs
Last synced: about 1 month ago
JSON representation
Github Action to auto accept all collaboration invites
- Host: GitHub
- URL: https://github.com/kbrashears5/github-action-auto-accept-collabs
- Owner: kbrashears5
- License: mit
- Created: 2020-12-15T02:41:13.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-08T14:53:37.000Z (10 months ago)
- Last Synced: 2024-10-31T10:51:30.900Z (about 2 months ago)
- Topics: accept, action, auto, collaboration, collabs
- Language: Shell
- Homepage: https://github.com/kbrashears5/github-action-auto-accept-collabs
- Size: 16.6 KB
- Stars: 4
- Watchers: 2
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# github-action-auto-accept-collabs
Github Action to auto accept all collaboration invites[![version](https://img.shields.io/github/v/release/kbrashears5/github-action-auto-accept-collabs)](https://img.shields.io/github/v/release/kbrashears5/github-action-auto-accept-collabs)
# Use Cases
Auto accept all collaboration invites. Useful for a bot account# Setup
Create a new file called `/.github/workflows/auto-accept-collabs.yml` that looks like so:
```yaml
name: Auto Accept Collabson:
push:
branches:
- master
schedule:
- cron: 0 0 * * *jobs:
file_sync:
runs-on: ubuntu-latest
steps:
- name: Fetching Local Repository
uses: actions/checkout@master
- name: Auto Accept Collabs
uses: kbrashears5/[email protected]
with:
TOKEN: ${{ secrets.ACTIONS }}
```
## Parameters
| Parameter | Required | Description |
| --- | --- | --- |
| TOKEN | true | Personal Access Token with Repo scope |