Jamie Nelson

Results 6 issues of Jamie Nelson

```yaml format: description: >+ Examples: `dotenv` will add the values to the file like `key=value` `shell` will add the values to the file like `export key=value` `yaml` will add the...

**Is your feature request related to a problem? Please describe.** Not all images need caching, and can take up valuable room. Some images are loaded before the cache is loaded...

enhancement

It can be disabled by adding this line to the shell file: ```bash # shellcheck disable=SC2292,SC2250,SC2086,SC1087,SC2248,SC2001,SC1007,SC2034 ``` Issues can be seen by adding the script to the [shellcheck online editor](https://www.shellcheck.net/):

https://github.com/ScaCap/action-surefire-report/blob/a915ba6359417544044fb06093a6c75097fe2a2b/utils.js#L101 If we use the `issueCommand()` function it will create error annotations in the action as well, which is also handy for accessing the problem. ```js core.issueCommand('error', {file: path,line:line}, `${message.replace(/\n/g,...

I'm writing a GitHub action currently that takes Jira Issues, and Jira sprints and creates GitHub Issues, and Github Milestones.

In my case I need to be able to specify device configuration: `deviceSelectionConfiguration` ```sh DEVICE_CONFIG="billingMethod=UNMETERED,radios={wifi=true,bluetooth=true,nfc=true,gps=true}" # Device configuration if [[ -f "data_arn.txt" ]]; then DEVICE_CONFIG="${DEVICE_CONFIG},extraDataPackageArn=$(cat data_arn.txt)" fi # Execution configuration...

O-Community