Results 17 comments of Amir Boutayeb

Hello, this is how I manage to do it. Let's say my repo is located at **mygithubuser/myrepo** : - First, I [generate a Github Token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token) - pass the Github Token...

Today, we do create workflows with a sequence of Cloud Functions / Cloud Run containers and other GCP resources (like PubSub, Cloud Storage, etc...). It's actually very hard to monitor...

Let's say the project where I created my service account is **my-gcp-project** and the service account name is **my-service-account** This is my security definition ``` "securityDefinitions":{ "service-account": { "authorizationUrl": "",...

All of this is really confusing... The process is really different depending on the library used. According to [google.oauth2.service_account documentation](https://google-auth.readthedocs.io/en/master/reference/google.oauth2.service_account.html) : > This profile uses a JWT to acquire an...

After reading [IAM Documentation : REST Resource: projects.serviceAccounts](https://cloud.google.com/iam/docs/reference/rest/v1/projects.serviceAccounts#signjwt-deprecated), I have a couple of remarks about the piece of code you suggested [here](https://github.com/anovis/goblet/issues/113#issuecomment-992824074) : - `signJwt` is deprecated - you should...

I'm getting this error : ``` Traceback (most recent call last): File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 2073, in wsgi_app response = self.full_dispatch_request() File "/usr/local/lib/python3.8/dist-packages/flask/app.py", line 1518, in full_dispatch_request rv = self.handle_user_exception(e) File...

I added `roles/iam.serviceAccountTokenCreator` to my roles. I'm still getting the error. Since I can see the service account (the one declared with `GOOGLE_APPLICATION_CREDENTIALS` environment variable) in the error, I guess...

Maybe my issue is related to CORS since I use an `index.html` that needs to call a local endpoint that expose a `.json` file. I'm gonna look into that. Thank...

Hello, I am trying do something similar with an array of modified folders & a matrix to avoid to replicate code for all the folders, but I couldn't make it...

After giving a look at the `changes-test` step of the `test-inline` job in the [.github/workflows/pull-request-verification.yml](https://github.com/dorny/paths-filter/blob/master/.github/workflows/pull-request-verification.yml) pipeline. I can see the `change` output isn't tested in a matrix. Maybe there is...