Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/push-dry-run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
# This workflow contains a single job called "build"
on-success:
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: tools-runner
steps:
- name: Trigger jenkins job to upload master to Quay.io
uses: franco-nonne/jenkins-job-trigger-action@update-bundler
uses: draios/jenkins-job-trigger-action@1.1.0
with:
jenkins_url: "https://jenkins.internal.sysdig.tools/"
jenkins_user: '[email protected]'
jenkins_url: ${{ secrets.JENKINS_INTERNAL_URL }}
jenkins_user: ${{ secrets.JENKINS_BOT_API_USER }}
jenkins_token: ${{ secrets.JENKINS_BOT_API_TOKEN }}
job_timeout: "300"
job_name: "promcat/job/exporters/job/integrations-postgresql-exporter"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
# This workflow contains a single job called "build"
on-success:
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: tools-runner
steps:
- name: Trigger jenkins job to upload master to Quay.io
uses: franco-nonne/jenkins-job-trigger-action@update-bundler
uses: draios/jenkins-job-trigger-action@1.1.0
with:
jenkins_url: "https://jenkins.internal.sysdig.tools/"
jenkins_user: '[email protected]'
jenkins_url: ${{ secrets.JENKINS_INTERNAL_URL }}
jenkins_user: ${{ secrets.JENKINS_BOT_API_USER }}
jenkins_token: ${{ secrets.JENKINS_BOT_API_TOKEN }}
job_timeout: "300"
job_name: "promcat/job/exporters/job/integrations-postgresql-exporter"
Expand Down