-
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (37 loc) · 1.33 KB
/
repo-manager.yml
File metadata and controls
42 lines (37 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
####################################################################
# repo-manager.yml
####################################################################
# Ragdata's Repo Manager Reusable Workflow
#
# File: repo-manager.yml
# Version: 1.0
# Author: Ragdata
# Date: 12/08/2024
# License: MIT License
# Copyright: Copyright © 2024 Redeyed Technologies
####################################################################
name: Repo Manager - Reusable
on:
# Allows this workflow to be called by other workflows
workflow_call:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
manage-repo:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
########################################################
# Checkout Repository
########################################################
- name: Checkout Repository
uses: actions/checkout@v4
########################################################
# Manage Repo
########################################################
- name: Manage Repo
uses: ragdata/repo-manager.action@develop
env:
GITHUB_TOKEN: ${{ secrets.token }}