Skip to content

Commit

Permalink
Add: git-use-https Action
Browse files Browse the repository at this point in the history
  • Loading branch information
n-thumann authored and greenbonebot committed Feb 12, 2024
1 parent 8547c72 commit ea39092
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions git-use-https/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Use HTTPS for GitHub data transfer"
description: "Use Git over HTTPS with OAuth instead of SSH to transfer data to GitHub"
inputs:
token:
description: "OAuth 2.0 token to use for authentication"
required: True
runs:
using: "composite"
steps:
- name: "Fix"
shell: bash
run: git config --global url."https://oauth2:${{ inputs.token }}@github.com".insteadOf "ssh://git@github.com"

0 comments on commit ea39092

Please sign in to comment.