Update gradle/gradle-build-action digest to 3bfe3a4 #253
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Label iOS version from Info.plist | ||
uses: classpass/[email protected] | ||
- name: Label from Info.plist | ||
uses: classpass/[email protected] | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
info-plist-path: './path_to_your/Info.plist' | ||
changed-files: 'src/ios/**' # optional | ||
label-format: 'iOS {version}' # optional | ||
npm install | ||
npm run package-action | ||
name: 'Label iOS version from Info.plist' | ||
description: 'Reads iOS version from Info.plist file and adds label to PR' | ||
author: 'classpass' | ||
inputs: | ||
info-plist-path: | ||
description: 'Relative path for the Info.plist file.' | ||
required: true | ||
repo-token: | ||
description: 'The GITHUB_TOKEN secret' | ||
required: true | ||
changed-files: | ||
description: 'Only apply the label if any files in this list of path globs have changed' | ||
required: false | ||
label-format: | ||
description: 'Format string for the label, e.g. "iOS app {version}"' | ||
required: false | ||
runs: | ||
using: 'node12' | ||
main: 'dist/index.js' | ||
branding: | ||
icon: 'smartphone' | ||
color: 'blue' | ||