Questions tagged [github]

Github is an online service for using git repositories to enable social and collaborative coding.

200 questions
0
votes
2 answers

Generating a proper ssh keypair on Lenny for Github

I have a codebase hosted in GitHub. I have 2 ubuntu machines (both on 10.04) that I develop on. On these machines I had no trouble generating my keypairs as per GitHub's instructions. Using the command ssh-keygen -t rsa -C "emailaddress" My server…
0
votes
0 answers

How to use github workflow from a different repository?

This is my workflow file, present in the same repository as the source code. I have my workflow file in same repository where the code is there, Instead I want to keep it in separate repository and use that here. How to do that? # 64bit…
uday kiran
  • 33
  • 6
0
votes
0 answers

Intermittent errors fetching from raw.githubusercontent.com using mingw curl and nodejs on Windows, but not in PowerShell or Linux VM

This started happening a month or two ago. I have a node script which fetches from: https://raw.githubusercontent.com/glowbuzzer/gbr/master/package.json This has started failing about one in three times, but not with all methods (all running on the…
jugglingcats
  • 101
  • 2
0
votes
0 answers

github auhentication method to access only all my organization's repos

I've been reading the official documentation and various articles but it's unclear to me. My organization has multiple users and multiple repos. It would not be right to merely authenticate as a particular github user (Personal Access Tokens),…
Val Kornea
  • 186
  • 6
0
votes
0 answers

In GitHub, is there a filter I can use to see admin activity in the Audit log?

Is there a specific search filter I can use to see all admin activity in the Audit log in GitHub? I'm specifically looking for admin changes to repository merge checks and any instance of an admin overriding merge checks in order to merge a PR. Is…
Chris Williams
  • 265
  • 2
  • 5
  • 14
0
votes
1 answer

ssh not looking for private key at $HOME

I have a Kubernetes pod with a persistent volume mounted at /data. I am trying to use the pod for remote development and as such, need to ensure that my private ssh key persists upon pod restart so I can continue to authenticate to GitHub without…
Harry Stuart
  • 101
  • 1
0
votes
1 answer

Cannot update Github key from CLI

I have only just tried to use github via git on the cli for the first time since they leaked their key and it needed resetting. I added the new key into known_hosts under users/luke/.ssh (Windows 11) (didn't work so I removed all existing known…
0
votes
0 answers

Passing Variable between GHA steps

I'm trying to pass variables from one steps to another step in github action . Below doesn't work . Is there way to do it ? jobs: eks_delete_resources: runs-on: code-default defaults: run: shell: bash steps: -…
0
votes
0 answers

Jenkinsfile - Build only if change in a specific subdirectory, how to manage post action

Basically, we're doing trunk development here, and got tons of services under the same directory. I have a Jenkins job that is triggered through GitHub webhook, and that will do some actions only if there's a change in a specific directory of that…
SBO
  • 544
  • 1
  • 5
  • 12
0
votes
0 answers

Is there anyway i can build iOS app using Jenkins without using MAC machine (even without using slave MAC mechine)

In our organisation, we have Jenkins master server running on Linux, and able to build the Android apps and deploy it to app store. But how to use the same Jenkins server to build the pipeline for the ios app without using any MAC mechine. What i…
0
votes
1 answer

Github Deploy Key Pattern

My Deployment Pattern I have a setup as shown in the diagram above, where have a github account which owns a number of private repositories. I have a number of machines in the field that each include some subset of the repositories that I manage.…
0
votes
0 answers

Why does my nightly TeamCity build fail, when it builds successfully during daytime?

I have a local TeamCity installation on my work PC. I've set up TeamCity to pull and build nightly. Checking the build logs, I can see that it is failing to collect changes whenever this build trigger happens. If I trigger the build manually, it…
afarley
  • 213
  • 2
  • 9
0
votes
1 answer

How to block git push to github

My organisation is trying to block 'git push' to repositories on sites like Github, Gitlab etc. Currently they have blocked the website, however users are still able to clone and push code via git. Git protocol uses port 9418, however the URL to…
Birla
  • 130
  • 5
0
votes
1 answer

Vagrant : how to create a box from aws ami?

I see vagrant as a great tool for testing and I am surprised the aws plugin (here https://github.com/mitchellh/vagrant-aws but which seems deprecated) is here to instanciate ec2 and not copy same configuration as ec2 on a local vm. I would like to…
user972331
0
votes
0 answers

kuberntes oauth2-proxy with github provider return 500 Internal Server Error

I'am trying to add an authentication from Kubernetes ingerss with oauth2-proxy github provider i have set everything according to the official documentaion the url works and it redirects me to use my github account but after login in it redircts me…