-
Notifications
You must be signed in to change notification settings - Fork 10
53 lines (49 loc) · 1.5 KB
/
addFilesToRepos.yml
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
43
44
45
46
47
48
49
50
51
52
53
name: Add files to repos
on:
workflow_dispatch:
inputs:
query:
description: 'Query for github API'
default: 'topic:x'
required: true
org:
description: 'Org to search for repos in'
default: 'DSACMS'
required: true
files:
description: 'File or folders to add'
default: 'tier1/LICENSE'
required: true
env:
repo: ""
jobs:
find-repos:
runs-on: ubuntu-latest
name: Find repos and generate matrix
steps:
- name: Checkout Action
uses: actions/checkout@v4
- name: Find repos
uses: ./.github/findRepos
with:
query: ${{ github.event.inputs.query }}
org: ${{ github.event.inputs.org }}
token: ${{ secrets.pat }}
outputs:
matrix: ${{ env.repo }}
add-files:
runs-on: ubuntu-latest
name: Add files
needs: [find-repos]
strategy:
matrix:
repo: ${{ fromJSON(needs.find-repos.outputs.matrix ) }}
steps:
- name: Checkout Action
uses: actions/checkout@v4
- name: Update file
uses: ./.github/addingFile
with:
repository: ${{ matrix.repo }}
files: ${{ github.event.inputs.files }}
token: ${{ secrets.pat }}