Skip to content

Update main.yml

Update main.yml #1

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions: write-all
jobs:
new_pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: git checkout new_test && gh pr create --title "t" --body "content" --repo alafumee/testrepo
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}