Skip to content

Commit 27711b6

Browse files
authored
Minify generate-user-mapping json output (#182)
1 parent 48a4c19 commit 27711b6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/generate-user-mapping/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
runs-on: ubuntu-latest
8888
steps:
8989
- name: Download Slack deploy user mapping artifact
90-
uses: dawidd6/action-download-artifact@v6
90+
uses: dawidd6/action-download-artifact@v11
9191
with:
9292
workflow: slack_deploy_user_mapping.yaml
9393
name: slack-deploy-user-mapping

dist/generateUserMapping/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/generateUserMapping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async function generateUserMapping(): Promise<void> {
1414

1515
const github_org = getInput('github_org', {required: true})
1616
const mapping = await githubToSlackMapping(octokit, slack, github_org)
17-
const mappingJson = JSON.stringify(mapping, null, 2)
17+
const mappingJson = JSON.stringify(mapping)
1818

1919
setOutput('json', mappingJson)
2020
} catch (err) {

0 commit comments

Comments
 (0)