#github #githubactions question: why can’t I trigger an action on a pull_request to the gh-pages branch? I can’t get the event to fire for the life of me. I’ve tried branch based and actions based pages configurations with no change.
The contents of this blog post have proven very useful today. The actions/checkout version was updated recently, and I've received a large number of PRs from Dependabot that just needed to be accepted.
#github #githubactions #dependabot
Un excellent article à lire via @keunes
> Let's translate this space!
🔗 https://antennapod.org/blog/2022/01/website-translations
#githubactions #mdpo #markdown #weblate #traduction
My #GitHub repos have come a long way since this one for #AzureSynapse.
I now have some for #sqlserver and #MicrosoftFabric as well, which have been spotted out in the wild.
Plus, a lot of them have populated wikis.
If you do use any of them feel free to give them a star in #GitHub #AzureDevOps #GitHubActions
#github #AzureSynapse #sqlserver #microsoftfabric #AzureDevOps #githubactions
🎉 I'm happy to announce our latest product: HyperEnv for GitHub Actions
Deploy self-hosted GitHub runners on AWS with ease!
👉 Reduce costs
👉 Access private networks
👉 Customize the build environment
https://hyperenv.com/github-actions/
❓ Interested in a free trial? Reply!
#AmazonWebServices #awscloud #github #githubactions
Rigged up a pretty spiffy package-and-release workflow using #GitHubActions tonight. The `semantic-release` utility handles bumping the version, updating the changelog, and cutting a release for the repository. A second workflow then builds a distribution package and publishes it to the GitHub #NPM package registry. 🤖
Github actions are designed with no CPU efficiency in mind.
It terrifies me how much time Github actions spent doing same things again and again in cases where it could easily be mitigated by cache and a good CI system design that targeted to spent resources effectively in general.
Unsurprisingly Github Actions billing is based on minutes spent repeatedly doing those things.
#Github #GithubActions #GiveUpGitHub #CI #CarbonEmissions #CorporateGreed
#github #githubactions #GiveUpGitHub #ci #carbonemissions #corporategreed
Use Terraform, GitHub Actions and DNSimple to automate DNS and domain management. Check out our video for more details 🎥 🎥 🎥 htpps://www.youtube.com/watch?v=2FmLxsbHcRk & dive into the world of automating DNS and domain management 👍.
#githubactions #terraform #dns #domains #hashicorp #github
#githubactions #terraform #dns #domains #hashicorp #github
I just released a small GitHub Action that verifies whether *your* action repo has its version tags set correctly.
I stumbled into too many actions that don't seem to keep their major tags pointing to the tallest patch release.
Just noticed that #dependabot can update #githubactions versions. A needed feature indeed, so far I have been manually monitoring the repository tags for updates
Automatic code coverage analysis has proven valuable when integrated with the CI pipeline. It can notify you automatically if your changes are about to drop the coverage.
Monitoring total coverage is the most helpful; patch coverage tends to report too many false positives.
Dive into the future of DevOps with GitHub Actions and Tailscale SSH! 🌐 Streamline workflows, enhance security, and watch your productivity soar. Don't miss this game-changing video! 🚀🎥 https://youtu.be/WXCokV-FeFw #DevOps #GitHubActions #Tailscale
#devops #githubactions #Tailscale
It is always great when starting to dig into an #opensource project and finding a ready-built #docker image. What a disappointment when I realize there is no arm64 variant.
OS developer, take the extra step for building for arm and save the day for us mac users! Here are instructions for #githubactions: https://findy-network.github.io/blog/2021/09/20/the-arm-adventure-on-docker/#integration-to-github-actions
#opensource #docker #githubactions
Ideas how to trigger a Github workflow when an external repository makes a release?
Specifically I'd like to run my workflow when a new rusty_v8 crate has been released. #rust #github #githubactions
GitHub Actionsでダウンロードに失敗するときには HTTP HEADER に GitHub TokenでBearer認証をかける
https://qiita.com/zacky1972/items/26cfba3d093420bf80a0?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items
#qiita #Elixir #GitHubActions #EXLA
#qiita #elixir #githubactions #exla
I remembered that I have a blog, so I wrote a little something about building a #multiarch #docker images for #rust #rustlang stuff, with #githubactions, in a reasonable time.
Here it is: https://blog.pedr0.net/multi-arch-docker-image-rust-and-github-actions-a-love-story/
#multiarch #docker #rust #rustlang #githubactions
Do you wish #GitHub Actions supported auto-incrementing integers to make versioning your releases easier? Me too. Go join the discussion and up-vote it: https://github.com/orgs/community/discussions/64533
#github #githubactions #cicd #devops
New blog post - Using GitHub Actions to Deploy LookML code to Looker.
https://shawnhooper.ca/2023/08/11/deploy-lookml-to-looker-with-github-actions/
#looker #githubactions #devops
Four tips to keep your GitHub Actions workflows secure
Check it out! 👇
https://github.blog/2023-08-09-four-tips-to-keep-your-github-actions-workflows-secure/
#githubactions #security #opensource
Finally! I have a #CI pipeline that build my binaries and docker images for both amd64 and arm64 in a reasonable time!
At first I wanted the build process to be a step in my #docker image building and obtain multi-arch through buildx, but it took forever, especially for the arm64 build.
So I ended up using rust cross compilation, built the binaries with it without docker and then copy the binary for each arch.
It need improvements, but I'm happy with the result!
#ci #docker #rust #github #githubactions