File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This is a basic workflow to help you get started with Actions
2
+ name : Generate Milestone Contributors
3
+
4
+ # Controls when the workflow will run
5
+ on :
6
+ # Allows you to run this workflow manually from the Actions tab
7
+ workflow_dispatch :
8
+ inputs :
9
+ milestone :
10
+ description : ' The milestone to generate contributors'
11
+ required : true
12
+ type : string
13
+
14
+ jobs :
15
+ show_contributors :
16
+ runs-on : ubuntu-latest
17
+ name : A job to get contributors
18
+ steps :
19
+ - name : GetContribs
20
+ id : get-contribs
21
+ uses : Keboo/GitHubHelper@master
22
+ with :
23
+ milestone : ' ${{ inputs.milestone }}'
24
+ repository : ' MaterialDesignInXamlToolkit'
25
+ repository-owner : ' MaterialDesignInXAML'
26
+ token : ${{ github.token }}
27
+ - name : Get the output
28
+ run : echo "${{ steps.get-contribs.outputs.contributors }}"
You can’t perform that action at this time.
0 commit comments