forked from MaterialDesignInXAML/MaterialDesignInXamlToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (26 loc) · 857 Bytes
/
generate_contributors.yml
File metadata and controls
28 lines (26 loc) · 857 Bytes
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
# This is a basic workflow to help you get started with Actions
name: Generate Milestone Contributors
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
milestone:
description: 'The milestone to generate contributors'
required: true
type: string
jobs:
show_contributors:
runs-on: ubuntu-latest
name: A job to get contributors
steps:
- name: GetContribs
id: get-contribs
uses: Keboo/GitHubHelper@master
with:
milestone: '${{ inputs.milestone }}'
repository: 'MaterialDesignInXamlToolkit'
repository-owner: 'MaterialDesignInXAML'
token: ${{ github.token }}
- name: Get the output
run: echo "${{ steps.get-contribs.outputs.contributors }}"