splunk / appinspect-cli-action

A GitHub action to run Splunk AppInspect (cli) on a Splunk app
Apache License 2.0
14 stars 6 forks source link

Multiple Included Tags #115

Open ccl0utier opened 11 months ago

ccl0utier commented 11 months ago

Are multiple tags supported? If so, could you please add an example to the README.md?

I've unsuccessfully tried:

- uses: splunk/appinspect-cli-action@v1.3
        with:
          app_path: ${{ needs.bundle-app.outputs.app_name }}.tar.gz
          included_tags: "splunk_appinspect,cloud"

And

- uses: splunk/appinspect-cli-action@v1.3
        with:
          app_path: ${{ needs.bundle-app.outputs.app_name }}.tar.gz
          included_tags: 
          - "splunk_appinspect"
          - "cloud"
artemrys commented 11 months ago

@ccl0utier this action does not support providing multiple tags

ccl0utier commented 11 months ago

So, run multiple times with the required tags in sequence? Any plans to add support for that? It would be worth adding to the documentation, I think.

artemrys commented 11 months ago

@ccl0utier currently we use this action like this: https://github.com/splunk/addonfactory-workflow-addon-release/blob/f4e3d6b81fd8aa32796bf97af046983773cccd98/.github/workflows/reusable-build-test-release.yml#L767

I am not aware of such plans.