Skip to content

Update push actions to remove plain text and use small runner #81

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 6 commits into from
May 23, 2025
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: 'jenkins-bot@sysdig.com'
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-redis-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: 'jenkins-bot@sysdig.com'
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-redis-exporter"
Expand Down
Loading