Skip to content

chore(deps): update cachix/install-nix-action action to v27 #658

chore(deps): update cachix/install-nix-action action to v27

chore(deps): update cachix/install-nix-action action to v27 #658

Workflow file for this run

---
#################################################################################
# Pipeline triggered when a new pull request is created to convert it into draft to avoid building docker images at the beginning
#################################################################################
name: New PR
on:
pull_request:
types:
- opened
concurrency:
group: ${{ github.head_ref }}-new
cancel-in-progress: false
jobs:
draft:
name: Convert to draft
runs-on: self-hosted-hoprnet-small
timeout-minutes: 10
if: ${{ github.event.pull_request.draft == false && ! contains(github.event.sender.login, 'hopr-bot') }}
steps:
- name: Checkout hoprnet repository
uses: actions/checkout@v4
- name: Convert to draft
run: |
gh pr ready ${{ github.event.pull_request.number }} --undo
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}