Created
May 8, 2025 11:30
-
-
Save TaiwoAmao/2a8731c750f0d6c5313ca69f99c6436e to your computer and use it in GitHub Desktop.
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
# jira Exporter Workflow | |
# This workflow is responsible for running the Jira exporter. | |
on: | |
workflow_dispatch: # Allows manual trigger | |
schedule: | |
- cron: '0 */1 * * *' # Runs every hour | |
jobs: | |
run-integration: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 # Job timeout | |
steps: | |
- name: Run Jira Integration | |
uses: port-labs/ocean-sail@v1 | |
with: | |
type: jira | |
port_client_id: ${{ secrets.PORT_CLIENT_ID }} | |
port_client_secret: ${{ secrets.PORT_CLIENT_SECRET }} | |
port_base_url: "https://api.getport.io" | |
config: | | |
jira_host: "https://amaotaiwo.atlassian.net" | |
atlassian_user_email: ${{ secrets.ATLASSIAN_USER_EMAIL }} | |
atlassian_user_token: ${{ secrets.ATLASSIAN_USER_TOKEN }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment