|
1 | 1 | name: "OrgFlow: Salesforce DevOps for GitHub" |
2 | 2 | author: OrgFlow GmbH |
3 | 3 | description: Use OrgFlow CLI from GitHub Actions to build your Salesforce DevOps pipeline and manage your deployments from GitHub |
| 4 | +branding: |
| 5 | + icon: cloud |
| 6 | + color: red |
4 | 7 | inputs: |
5 | 8 | version: |
6 | | - description: Version of OrgFlow to install. Can be specified as major '1', minor '1.1' or patch '1.1.1'; latest matching version will be installed. Omit to install latest available version. |
| 9 | + description: Version of OrgFlow to install. Can be specified as major '1', minor '1.1' or patch '1.1.1'; latest matching version will be installed (omit to install latest available version). |
7 | 10 | required: false |
8 | | - includePrerelease: |
9 | | - description: Include prerelease versions when determining latest available version. |
| 11 | + include-prerelease: |
| 12 | + description: Set to 'true' to include prerelease versions when determining latest available version. |
10 | 13 | required: false |
11 | 14 | default: "false" |
| 15 | + skip-install: |
| 16 | + description: Don't download and install OrgFlow (i.e. assume OrgFlow is already installed). |
| 17 | + required: false |
| 18 | + default: "false" |
| 19 | + license-key: |
| 20 | + description: Your OrgFlow license key (you can get one at https://www.orgflow.io/trial if you do not already have one). |
| 21 | + required: true |
| 22 | + salesforce-username: |
| 23 | + description: Save username for connecting to production Salesforce org (stored on runner in encrypted form). |
| 24 | + required: false |
| 25 | + salesforce-password: |
| 26 | + description: Save password for connecting to production Salesforce org (stored on runner in encrypted form). |
| 27 | + required: false |
| 28 | + git-username: |
| 29 | + description: Save username for connecting to remote Git repository (not needed if connecting to a GitHub repository). |
| 30 | + required: false |
| 31 | + git-password: |
| 32 | + description: Save access token or password for connecting to remote Git repository (use 'secrets.GITHUB_TOKEN' if connecting to the current repository). |
| 33 | + required: false |
| 34 | + git-committer-name: |
| 35 | + description: Set name to use in committer signature when committing changes to Git repository. |
| 36 | + required: false |
| 37 | + default: OrgFlow Default Committer |
| 38 | + git-committer-email: |
| 39 | + description: Set email address to use in committer signature when committing changes to Git repository. |
| 40 | + required: false |
| 41 | + default: defaultcommitter@orgflow.io |
| 42 | + stack-name: |
| 43 | + description: Name of OrgFlow stack to save credentials for (required when saving Salesforce or Git credentials). |
| 44 | + required: false |
| 45 | + encryption-key: |
| 46 | + description: Encryption key to use when encrypting and decrypting Salesforce and/or Git credentials (omit to generate a new encryption key). |
| 47 | + required: false |
| 48 | + log-file-name: |
| 49 | + description: Name (optionally tokenized) of OrgFlow diagnostic log files. |
| 50 | + required: false |
| 51 | + default: "{C}-{T:yyyyMMdd-HHmmss-FFF}.log" |
| 52 | + log-level: |
| 53 | + description: Verbosity level for OrgFlow diagnostic log files (verbose, debug, information, warning, error or fatal). |
| 54 | + required: false |
| 55 | + default: verbose |
| 56 | + upload-artifact: |
| 57 | + description: Set to 'false' to disable uploading of all OrgFlow diagnostic log files and bundles during post-job processing. |
| 58 | + required: false |
| 59 | + default: "true" |
12 | 60 | outputs: |
13 | 61 | version: |
14 | | - description: Exact version of OrgFlow that was installed and configured. |
| 62 | + description: Exact version of OrgFlow that was installed and/or configured. |
| 63 | + encryption-key: |
| 64 | + description: Encryption key that was saved. |
15 | 65 | runs: |
16 | 66 | using: node16 |
17 | 67 | main: dist/index.js |
| 68 | + post: dist/index.js |
0 commit comments