mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			626 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			626 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Hypermod
 | 
						|
 | 
						|
on:
 | 
						|
  workflow_dispatch:
 | 
						|
    inputs:
 | 
						|
      deploymentId:
 | 
						|
        description: "The deployment ID contianing instructions to apply on a repository"
 | 
						|
      deploymentKey:
 | 
						|
        description: "The deployment key to authenticate the request"
 | 
						|
jobs:
 | 
						|
  receive_hypermod_event:
 | 
						|
    permissions: write-all
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v4
 | 
						|
      - name: Run Hypermod CLI
 | 
						|
        uses: hypermod-io/action@v1
 | 
						|
        with:
 | 
						|
          deploymentId: ${{ inputs.deploymentId }}
 | 
						|
          deploymentKey: ${{ inputs.deploymentKey }}
 | 
						|
    env:
 | 
						|
      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |