docs: removed unwanted dashes #132
This file contains hidden or 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: Update Gulpease Index on Jira | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| gulpease-update: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/notipswe/notip-docs-dev:v0.0.1 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Environment | |
| uses: ./.github/actions/setup-docs-env | |
| - name: Build all docs | |
| run: notipdo build all | |
| - name: Calculate Gulpease index and Send to Jira | |
| # Passiamo i secret come variabili d'ambiente | |
| env: | |
| JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
| JIRA_DOMAIN: ${{ secrets.JIRA_DOMAIN }} | |
| JIRA_EMAIL: ${{ secrets.JIRA_EMAIL }} | |
| JIRA_ISSUE_KEY: ${{ secrets.JIRA_ISSUE_KEY }} | |
| JIRA_CUSTOM_FIELD_ID: ${{ secrets.JIRA_CUSTOM_FIELD_ID }} | |
| run: notipdo metrics gulpease --jira |