<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>YAML on Martijn's Notes</title><link>https://vandenboom.online/es/tags/yaml/</link><description>Recent content in YAML on Martijn's Notes</description><generator>Hugo</generator><language>es</language><copyright>Copyright © 2016-2026 van den &lt;span class='bold-rotate'&gt;B&lt;/span&gt;oom. All Rights Reserved.</copyright><lastBuildDate>Tue, 14 Apr 2026 19:01:00 +0200</lastBuildDate><atom:link href="https://vandenboom.online/es/tags/yaml/index.xml" rel="self" type="application/rss+xml"/><item><title>Azure DevOps — Part 2: Your First YAML Pipeline</title><link>https://vandenboom.online/es/posts/2026-azure-devops-pipelines-eerste-pipeline/</link><pubDate>Tue, 14 Apr 2026 19:01:00 +0200</pubDate><guid>https://vandenboom.online/es/posts/2026-azure-devops-pipelines-eerste-pipeline/</guid><description><![CDATA[<p>In <a href="../2026-azure-devops-repos-branches-policies-pull-requests/">part 1</a> the <code>azure-pipelines.yml</code> was merged into the <code>main</code> branch via a Pull Request. In this second part we attach that YAML to a pipeline and run it on a Microsoft-hosted Windows agent in the cloud.</p>

<h2 id="the-pipelines-section" data-numberify>The Pipelines section<a class="anchor ms-1" href="#the-pipelines-section"></a></h2>
<p>The Pipelines section in the sidebar contains more items than Repos:</p>
<ul>
<li><strong>Pipelines</strong> — the CI pipelines (build)</li>
<li><strong>Environments</strong> — deployment targets such as acceptance and production</li>
<li><strong>Releases</strong> — the classic visual release pipelines (older system, being replaced by multi-stage YAML)</li>
<li><strong>Library</strong> — variable groups and secure files</li>
<li><strong>Task groups</strong> — reusable task blocks that can be shared across multiple pipelines</li>
<li><strong>Deployment groups</strong> — self-hosted agents grouped per environment</li>
</ul>
<p>On a new project the Pipelines list is empty.</p>]]></description><enclosure url="https://vandenboom.online/posts/2026-azure-devops-pipelines-eerste-pipeline/cover.png" length="110910" type="image/png"/></item><item><title>Azure DevOps — Part 1: Repos, Branches, Policies and Pull Requests</title><link>https://vandenboom.online/es/posts/2026-azure-devops-repos-branches-policies-pull-requests/</link><pubDate>Tue, 14 Apr 2026 19:00:00 +0200</pubDate><guid>https://vandenboom.online/es/posts/2026-azure-devops-repos-branches-policies-pull-requests/</guid><description><![CDATA[<p>Azure DevOps is Microsoft&rsquo;s platform for managing the complete software delivery chain: version control, CI/CD pipelines, project planning, package feeds and documentation. In this first part of the series we build the foundation: a Git repository, branch protection and the Pull Request workflow.</p>

<h2 id="setup-organisation-and-project" data-numberify>Setup: organisation and project<a class="anchor ms-1" href="#setup-organisation-and-project"></a></h2>
<p>After logging in to <a href="https://dev.azure.com" target="_blank" rel="noopener noreferrer">dev.azure.com<i class="fas fa-external-link-square-alt ms-1"></i></a> the <code>mvdboom</code> organisation is visible with one existing project.</p>
<p><picture><img class="img-fluid " alt="mvdboom organisation with test_hello_world project" src="/posts/2026-azure-devops-repos-branches-policies-pull-requests/screenshot-01-mvdboom-organisatie.png" loading="lazy" width="2559" height="1410" />
</picture>

</p>]]></description><enclosure url="https://vandenboom.online/posts/2026-azure-devops-repos-branches-policies-pull-requests/screenshot-11-feature-branch.png" length="168514" type="image/png"/></item><item><title>Alternar código</title><link>https://vandenboom.online/es/docs/shortcodes/code-toggle/</link><pubDate>Mon, 13 Jun 2022 16:54:28 +0800</pubDate><guid>https://vandenboom.online/es/docs/shortcodes/code-toggle/</guid><description><![CDATA[<p>El shortcode <code>code-toggle</code> genera bloques de código de varios formatos de acuerdo con el código de configuración de cualquier formato compatible.</p>
<!--más-->

<h2 id="formatos" data-numberify>Formatos<a class="anchor ms-1" href="#formatos"></a></h2>
<p><code>JSON</code>, <code>TOML</code> y <code>YAML</code> son compatibles.</p>

<h2 id="uso" data-numberify>Uso<a class="anchor ms-1" href="#uso"></a></h2>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-markdown" data-lang="markdown"><span class="line"><span class="ln">1</span><span class="cl">{{&lt; code-toggle &gt;}}
</span></span><span class="line"><span class="ln">2</span><span class="cl">CODE IN ANY SUPPORTED FORMAT
</span></span><span class="line"><span class="ln">3</span><span class="cl">{{&lt;/ code-toggle &gt;}}
</span></span></code></pre></div><p>Con un nombre de archivo:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-markdown" data-lang="markdown"><span class="line"><span class="ln">1</span><span class="cl">{{&lt; filename=&#34;config&#34; code-toggle &gt;}}
</span></span><span class="line"><span class="ln">2</span><span class="cl">CODE IN ANY SUPPORTED FORMAT
</span></span><span class="line"><span class="ln">3</span><span class="cl">{{&lt;/ code-toggle &gt;}}
</span></span></code></pre></div>
<h2 id="ejemplo" data-numberify>Ejemplo<a class="anchor ms-1" href="#ejemplo"></a></h2>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-markdown" data-lang="markdown"><span class="line"><span class="ln">1</span><span class="cl">{{&lt; code-toggle filename=&#34;params&#34; &gt;}}
</span></span><span class="line"><span class="ln">2</span><span class="cl">{
</span></span><span class="line"><span class="ln">3</span><span class="cl">    &#34;logo&#34;: &#34;/images/logo.png&#34;,
</span></span><span class="line"><span class="ln">4</span><span class="cl">    &#34;customCSS&#34;: [&#34;foo.css&#34;, &#34;bar.css&#34;],
</span></span><span class="line"><span class="ln">5</span><span class="cl">    &#34;codeBlock&#34;: {
</span></span><span class="line"><span class="ln">6</span><span class="cl">        &#34;maxLines&#34;: 10
</span></span><span class="line"><span class="ln">7</span><span class="cl">    }
</span></span><span class="line"><span class="ln">8</span><span class="cl">}
</span></span><span class="line"><span class="ln">9</span><span class="cl">{{&lt;/ code-toggle &gt;}}
</span></span></code></pre></div><div class="code-toggle border border-secondary rounded px-2 pt-2">
    <ul class="nav nav-tabs border-secondary mb-0" role="tablist"><li class="nav-item mb-0" role="presentation">
            <button class="nav-link p-1 active" id="toml-params691352874-tab" data-bs-toggle="tab" data-bs-target="#toml-params691352874" type="button" role="tab" 
                aria-controls="home" aria-selected="true">
                TOML
            </button>
        </li><li class="nav-item mb-0" role="presentation">
            <button class="nav-link p-1" id="yaml-params691352874-tab" data-bs-toggle="tab" data-bs-target="#yaml-params691352874" type="button" role="tab" 
                aria-controls="home" aria-selected="false">
                YAML
            </button>
        </li><li class="nav-item mb-0" role="presentation">
            <button class="nav-link p-1" id="json-params691352874-tab" data-bs-toggle="tab" data-bs-target="#json-params691352874" type="button" role="tab" 
                aria-controls="home" aria-selected="false">
                JSON
            </button>
        </li></ul>
    <div class="tab-content"><div class="tab-pane fade show active" id="toml-params691352874" role="tabpanel" aria-labelledby="toml-params691352874-tab"><p class="user-select-all mt-2 mb-0 text-primary fw-bold">params.toml</p>]]></description><enclosure url="https://vandenboom.online/docs/shortcodes/code-toggle/featured.png" length="157833" type="image/png"/></item></channel></rss>