Skip to content

Commit 7db58f7

Browse files
authored
Create main.yml
1 parent b6722e8 commit 7db58f7

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/main.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 }}"

0 commit comments

Comments
 (0)