https://github.com/advanced-security/survey-link
https://github.com/advanced-security/survey-link
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/advanced-security/survey-link
- Owner: advanced-security
- Created: 2022-07-20T06:13:01.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-20T07:04:13.000Z (almost 3 years ago)
- Last Synced: 2025-01-10T00:15:10.865Z (4 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Create GHAS Trial Survey Links #
## What?
This action automatically creates a weblink to the GHAS trial survey. The links will be valid for 14 days by default.
## Example
```yaml
name: "Example"on:
workflow_dispatch:jobs:
analyze:
name: Example
runs-on: ubuntu-lateststeps:
- name: Create Link
id: createlink
uses: advanced-security/survey-link@main
with:
surveymonkey_token: ${{ secrets.surveymonkey_token }}
name: acme limited- run: |
echo "${{ steps.createlink.outputs.link }}"
```